forked from pool/python-astor
- Add py314.patch to support Python 3.14
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-astor?expand=0&rev=37
This commit is contained in:
148
python-astor.changes
Normal file
148
python-astor.changes
Normal file
@@ -0,0 +1,148 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Sep 8 12:44:02 UTC 2025 - Markéta Machová <mmachova@suse.com>
|
||||
|
||||
- Add py314.patch to support Python 3.14
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jun 13 05:37:21 UTC 2025 - Steve Kowalik <steven.kowalik@suse.com>
|
||||
|
||||
- Switch to pyproject macros.
|
||||
- Add patches, to support Python 3.12+:
|
||||
* lower-huge-int.patch
|
||||
* support-match.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jul 4 12:06:42 UTC 2024 - Daniel Garcia <daniel.garcia@suse.com>
|
||||
|
||||
- Skip same tests for python-3.13
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Sep 28 12:10:03 UTC 2023 - Daniel Garcia <daniel.garcia@suse.com>
|
||||
|
||||
- Skip same tests for python-3.12
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Apr 21 12:22:08 UTC 2023 - Dirk Müller <dmueller@suse.com>
|
||||
|
||||
- add sle15_python_module_pythons (jsc#PED-68)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Apr 13 22:40:03 UTC 2023 - Matej Cepl <mcepl@suse.com>
|
||||
|
||||
- Make calling of %{sle15modernpython} optional.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jan 10 09:47:36 UTC 2023 - Daniel Garcia <daniel.garcia@suse.com>
|
||||
|
||||
- Skip same tests for python-3.11
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Sep 12 11:52:11 UTC 2022 - Markéta Machová <mmachova@suse.com>
|
||||
|
||||
- Skip test_huge_int due to new security feature in Python
|
||||
* https://github.com/python/cpython/issues/95778
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Dec 12 18:45:55 UTC 2021 - Ben Greiner <code@bnavigator.de>
|
||||
|
||||
- Also skip convert_stdlib in python310: still not fixed
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Mar 19 19:13:12 UTC 2021 - Ben Greiner <code@bnavigator.de>
|
||||
|
||||
- Skip failing stdlib roundtrip test on python39
|
||||
gh#berkerpeksag/astor#196
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jun 1 09:54:30 UTC 2020 - Tomáš Chvátal <tchvatal@suse.com>
|
||||
|
||||
- Remove patch remove_unittest2.patch as we use pytest to load
|
||||
stuff it is no longer really needed
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri May 29 12:49:31 UTC 2020 - pgajdos@suse.com
|
||||
|
||||
- for python3, drop dependency on unittest2
|
||||
- added patches
|
||||
+ remove_unittest2.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Apr 3 21:34:35 UTC 2020 - Marcus Rueckert <mrueckert@suse.de>
|
||||
|
||||
- remove the shebang line from the rtrip.py otherwise the python3
|
||||
package will require /usr/bin/python.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 25 15:11:49 UTC 2020 - Paolo Stivanin <info@paolostivanin.com>
|
||||
|
||||
- Add remove_nose.patch
|
||||
* test suite runs fine without nose, because it was written for unittest2
|
||||
and, because nose won't work with Python 3.9/3.10, this patch removes
|
||||
the requirement from setup.cfg and use unittest2 in the spec file
|
||||
instead of nose
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 17 12:59:09 UTC 2020 - Marketa Calabkova <mcalabkova@suse.com>
|
||||
|
||||
- update to 0.8.1
|
||||
* Create sdist before making a test release too
|
||||
* remove expr_text handler from fstrings
|
||||
- Drop obsolete python38.patch and setuptools-gt-41_1.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Nov 14 14:30:21 CET 2019 - Matej Cepl <mcepl@suse.com>
|
||||
|
||||
- Add patch to build with setuptools >= 41.4:
|
||||
* setuptools-gt-41_1.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Sep 10 13:45:54 UTC 2019 - Tomáš Chvátal <tchvatal@suse.com>
|
||||
|
||||
- Add patch to build with py 3.8:
|
||||
* python38.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jun 3 08:18:07 UTC 2019 - pgajdos@suse.com
|
||||
|
||||
- version update to 0.8
|
||||
* Support ``ast.Constant`` nodes being emitted by Python 3.8 (and initially
|
||||
created in Python 3.6).
|
||||
(Reported and fixed by Chris Rink in `Issue 120`_ and `PR 121`_.)
|
||||
* Support Python 3.8's assignment expressions.
|
||||
(Reported and fixed by Kodi Arfer in `Issue 126`_ and `PR 134`_.)
|
||||
* Support Python 3.8's f-string debugging syntax.
|
||||
(Reported and fixed by Batuhan Taskaya in `Issue 138`_ and `PR 139`_.)
|
||||
* :func:`astor.to_source` now has a *source_generator_class* parameter to
|
||||
customize source code generation.
|
||||
(Reported and fixed by matham in `Issue 113`_ and `PR 114`_.)
|
||||
* The :class:`~SourceGenerator` class can now be imported from the
|
||||
:mod:`astor` package directly. Previously, the ``astor.code_gen``
|
||||
submodule was needed to be imported.
|
||||
* Support Python 3.8's positional only arguments. See :pep:`570` for
|
||||
more details.
|
||||
(Reported and fixed by Batuhan Taskaya in `Issue 142`_ and `PR 143`_.)
|
||||
* bug fixes, see changelog.rst
|
||||
- run the testsuite
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Nov 9 12:03:52 UTC 2018 - Petr Cervinka <petr@cervinka.net>
|
||||
|
||||
- Removed copied link reference from spec file
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Nov 9 10:27:55 UTC 2018 - cgoll@suse.com
|
||||
|
||||
- fixed rpmlint warnings
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Nov 8 14:04:28 UTC 2018 - cgoll@suse.com
|
||||
|
||||
- removed not needed module devel
|
||||
* removed check section
|
||||
* using license macro
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jul 25 08:13:46 UTC 2018 - cgoll@suse.com
|
||||
|
||||
- initial commit of astor 0.7.1 for python2 and python3
|
||||
* skipped check section, as this was faling
|
||||
Reference in New Issue
Block a user