1
0

- update to 3.0.29:

* Further improve performance of dictionary completions.
  * Custom 'exit' function to return from REPL that
  * doesn't terminate `sys.stdin` when `exit` is called
    (important for `embed()`).
  * doesn't require to be called with parentheses.
  * Clean up signatures on control-c.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-ptpython?expand=0&rev=32
This commit is contained in:
2024-08-31 12:09:21 +00:00
committed by Git OBS Bridge
commit 3d1a93f2d2
6 changed files with 311 additions and 0 deletions

23
.gitattributes vendored Normal file
View File

@@ -0,0 +1,23 @@
## Default LFS
*.7z filter=lfs diff=lfs merge=lfs -text
*.bsp filter=lfs diff=lfs merge=lfs -text
*.bz2 filter=lfs diff=lfs merge=lfs -text
*.gem filter=lfs diff=lfs merge=lfs -text
*.gz filter=lfs diff=lfs merge=lfs -text
*.jar filter=lfs diff=lfs merge=lfs -text
*.lz filter=lfs diff=lfs merge=lfs -text
*.lzma filter=lfs diff=lfs merge=lfs -text
*.obscpio filter=lfs diff=lfs merge=lfs -text
*.oxt filter=lfs diff=lfs merge=lfs -text
*.pdf filter=lfs diff=lfs merge=lfs -text
*.png filter=lfs diff=lfs merge=lfs -text
*.rpm filter=lfs diff=lfs merge=lfs -text
*.tbz filter=lfs diff=lfs merge=lfs -text
*.tbz2 filter=lfs diff=lfs merge=lfs -text
*.tgz filter=lfs diff=lfs merge=lfs -text
*.ttf filter=lfs diff=lfs merge=lfs -text
*.txz filter=lfs diff=lfs merge=lfs -text
*.whl filter=lfs diff=lfs merge=lfs -text
*.xz filter=lfs diff=lfs merge=lfs -text
*.zip filter=lfs diff=lfs merge=lfs -text
*.zst filter=lfs diff=lfs merge=lfs -text

1
.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
.osc

3
ptpython-3.0.27.tar.gz Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:24b0fda94b73d1c99a27e6fd0d08be6f2e7cda79a2db995c7e3c7b8b1254bad9
size 72022

3
ptpython-3.0.29.tar.gz Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:b9d625183aef93a673fc32cbe1c1fcaf51412e7a4f19590521cdaccadf25186e
size 72622

179
python-ptpython.changes Normal file
View File

@@ -0,0 +1,179 @@
-------------------------------------------------------------------
Sat Aug 31 12:08:45 UTC 2024 - Dirk Müller <dmueller@suse.com>
- update to 3.0.29:
* Further improve performance of dictionary completions.
* Custom 'exit' function to return from REPL that
* doesn't terminate `sys.stdin` when `exit` is called
(important for `embed()`).
* doesn't require to be called with parentheses.
* Clean up signatures on control-c.
-------------------------------------------------------------------
Thu Jun 6 19:39:14 UTC 2024 - Dirk Müller <dmueller@suse.com>
- update to 3.0.27:
* Limit number of completions to 5k (for performance).
* Several typing fixes.
-------------------------------------------------------------------
Thu Mar 14 07:37:22 UTC 2024 - Matej Cepl <mcepl@cepl.eu>
- Don't try to build on Python 3.9, we don't have IPython there anymore.
-------------------------------------------------------------------
Wed Mar 13 10:19:02 UTC 2024 - Dirk Müller <dmueller@suse.com>
- remove optional ipython dependency - does no longer exist
on python39
-------------------------------------------------------------------
Fri Feb 9 21:58:18 UTC 2024 - Dirk Müller <dmueller@suse.com>
- update to 3.0.26:
* Handle `GeneratorExit` exception when leaving the paginator.
-------------------------------------------------------------------
Wed Dec 27 13:52:57 UTC 2023 - Dirk Müller <dmueller@suse.com>
- update to 3.0.25:
* Fix handling of 'config file does not exist' when embedding
ptpython.
* Don't show "Impossible to read config file" warnings when no
config file was passed to `run_config()`.
* Output printing fixes:
* Paginate exceptions if pagination is enabled.
* Handle big outputs without running out of memory.
* Asyncio REPL improvements:
* From now on, passing `--asyncio` is required to activate the
asyncio-REPL.
* This will ensure that an event loop is created at the
start in which we can run top-level await statements.
* Use `get_running_loop()` instead of `get_event_loop()`.
* Better handling of `SystemExit` and control-c in the async
REPL.
-------------------------------------------------------------------
Mon Dec 11 07:23:19 UTC 2023 - Dirk Müller <dmueller@suse.com>
- update to 3.0.23:
* Don't print exception messages twice for unhandled
exceptions.
* Added cursor shape support.
* Drop Python 3.6 support.
-------------------------------------------------------------------
Tue Dec 13 16:19:12 UTC 2022 - Yogalakshmi Arunachalam <yarunachalam@suse.com>
- Update to version 3.0.22
* New features:
- Improve rendering performance when there are many completions.
-------------------------------------------------------------------
Tue Dec 6 04:31:39 UTC 2022 - Yogalakshmi Arunachalam <yarunachalam@suse.com>
- Update to version 3.0.21:
New features:
- Make ptipython respect more config changes.
(See: https://github.com/prompt-toolkit/ptpython/pull/110 )
- Improved performance of `DictionaryCompleter` for slow mappings.
Fixes:
- Call `super()` in `PythonInputFilter`. This will prevent potentially breakage
with an upcoming prompt_toolkit change.
(See: https://github.com/prompt-toolkit/python-prompt-toolkit/pull/1690 )
- Improved type annotations.
- Added `py.typed` to the `package_data`.
-------------------------------------------------------------------
Tue Oct 4 23:22:29 UTC 2022 - Yogalakshmi Arunachalam <yarunachalam@suse.com>
- Update to version 3.0.20: 2021-09-14
New features:
- For `DictionaryCompleter`: show parentheses after methods.
Fixes:
- Don't crash when trying to complete broken mappings in `DictionaryCompleter`.
- Don't crash when an older version of `black` is installed that is not
compatible.
- Update to version 3.0.19: 2021-07-08
Fixes:
- Fix handling of `SystemExit` (fixes "ValueError: I/O operation on closed
file").
- Allow usage of `await` in assignment expressions or for-loops.
-------------------------------------------------------------------
Tue Mar 24 07:39:09 UTC 2020 - pgajdos@suse.com
- version update to 3.0.1
- Fix backwards-compatibility of the `run_config` function. (used by
django-extensions).
- Fix input mode in status bar for block selection.
- Upgrade to prompt_toolkit 3.0.
- Requires at least Python 3.6.
- Uses XDG base directory specification.
- Added dictionary completer (off by default).
- Added fuzzy completion (off by default).
- Highlight keywords in completion dropdown menu.
- Enable universal wheels.
- Fixed embedding repl as asyncio coroutine.
- Fixed patching stdout in embedded repl.
- Fixed ResourceWarning in setup.py.
-------------------------------------------------------------------
Mon Jun 3 17:04:50 UTC 2019 - Todd R <toddrme2178@gmail.com>
- Fix jupyter dependencies.
- Update to 2.0.4
* Fixed ptipython.
* Fixed config: setting of color depth.
* Fixed auto-suggest key bindings.
* Fixed Control-D key binding for exiting REPL when (confirm_exit=False).
* Correctly focus/unfocus sidebar.
* Fixed open_in_editor and suspend key bindings.
-------------------------------------------------------------------
Mon Feb 4 19:03:04 UTC 2019 - Jan Engelhardt <jengelh@inai.de>
- Trim conjecture from descriptions.
-------------------------------------------------------------------
Tue Dec 4 12:51:46 UTC 2018 - Matej Cepl <mcepl@suse.com>
- Remove superfluous devel dependency for noarch package
-------------------------------------------------------------------
Fri Oct 26 15:41:55 UTC 2018 - Todd R <toddrme2178@gmail.com>
- Update to version 2.0.3
* Allow changing the min/max brightness.
* Some changes for compatibility with the latest prompt_toolkit.
- Update to version 2.0.2
* Don't crash the history browser when there was no history.
* Set last exception in the sys module, when an exception was
raised.
* Require prompt_toolkit 2.0.5.
- Update to version 2.0.1
* Upgrade to prompt_toolkit 2.0.x.
- Split IPython support into its own subpackage and make it
python3-only. Due to the python2 version of IPython using
prompt_toolkit 1.x and both the python3 version of IPython
and Ptpython using prompt_toolkit 2.x, the python2 version of
Ptpython cannot be used with IPython anymore.
-------------------------------------------------------------------
Thu May 24 17:38:09 UTC 2018 - toddrme2178@gmail.com
- spec file cleanups
-------------------------------------------------------------------
Wed Oct 18 16:45:24 UTC 2017 - toddrme2178@gmail.com
- Implement single-spec version
- Update to version 0.41
* See changelog at https://github.com/jonathanslenders/ptpython/blob/da2c5281f60c2d8a92749709219771ffaa84220f/CHANGELOG
-------------------------------------------------------------------
Thu Mar 5 10:21:06 UTC 2015 - toddrme2178@gmail.com
- Initial version

102
python-ptpython.spec Normal file
View File

@@ -0,0 +1,102 @@
#
# spec file for package python-ptpython
#
# Copyright (c) 2024 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
%{?sle15_python_module_pythons}
%define skip_python39 1
Name: python-ptpython
Version: 3.0.29
Release: 0
Summary: Python REPL build on top of prompt_toolkit
License: ISC
Group: Development/Languages/Python
URL: https://github.com/jonathanslenders/ptpython
Source: https://files.pythonhosted.org/packages/source/p/ptpython/ptpython-%{version}.tar.gz
BuildRequires: %{python_module base >= 3.7}
BuildRequires: %{python_module setuptools}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
Requires: python-Pygments
Requires: python-appdirs
Requires: python-docopt
Requires: python-jedi >= 0.9.0
Requires: python-prompt_toolkit >= 3.0.0
BuildArch: noarch
# SECTION test requirements
BuildRequires: %{python_module Pygments}
BuildRequires: %{python_module appdirs}
BuildRequires: %{python_module docopt}
BuildRequires: %{python_module jedi >= 0.9.0}
BuildRequires: %{python_module prompt_toolkit >= 3.0.0}
# /SECTION
Recommends: python-ptpython-ptipython
%python_subpackages
%description
Ptpython is an advanced Python REPL.
%package ptipython
Summary: Python REPL build on top of prompt_toolkit - IPython support
Group: Development/Languages/Python
Requires: python-ipython
Requires: python-ptpython
%description ptipython
Ptpython is an advanced Python REPL.
This package provides IPython support to Ptpython.
%prep
%setup -q -n ptpython-%{version}
sed -i -e '/^#!\//, 1d' ptpython/entry_points/run_*.py
%build
%python_build
%install
%python_install
%python_expand %fdupes %{buildroot}%{$python_sitelib}
rm %{buildroot}%{_bindir}/pt{,i}python?*
%python_clone -a %{buildroot}%{_bindir}/ptpython
%python_clone -a %{buildroot}%{_bindir}/ptipython
%post
%python_install_alternative ptpython
%post ptipython
%python_install_alternative ptipython
%postun
%python_uninstall_alternative ptpython
%postun ptipython
%python_uninstall_alternative ptipython
%check
# no upstream tests under tests/
%files %{python_files}
%doc CHANGELOG README.rst
%license LICENSE
%{python_sitelib}/*
%python_alternative %{_bindir}/ptpython
%files %{python_files ptipython}
%license LICENSE
%python_alternative %{_bindir}/ptipython
%changelog