Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package python-typed-ast for
openSUSE:Factory checked in at 2023-10-02 20:04:52
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-typed-ast (Old)
and /work/SRC/openSUSE:Factory/.python-typed-ast.new.28202 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-typed-ast"
Mon Oct 2 20:04:52 2023 rev:22 rq:1114754 version:1.5.5
Changes:
--------
--- /work/SRC/openSUSE:Factory/python-typed-ast/python-typed-ast.changes
2023-05-09 13:09:18.053722023 +0200
+++
/work/SRC/openSUSE:Factory/.python-typed-ast.new.28202/python-typed-ast.changes
2023-10-02 20:06:17.546429054 +0200
@@ -1,0 +2,7 @@
+Mon Oct 2 08:20:43 UTC 2023 - Dirk Müller <[email protected]>
+
+- update to 1.5.5:
+ * update project to be end of life
+ * set dev status to inactive
+
+-------------------------------------------------------------------
Old:
----
typed_ast-1.5.4.tar.gz
New:
----
typed_ast-1.5.5.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-typed-ast.spec ++++++
--- /var/tmp/diff_new_pack.lD2UWf/_old 2023-10-02 20:06:18.758472642 +0200
+++ /var/tmp/diff_new_pack.lD2UWf/_new 2023-10-02 20:06:18.762472785 +0200
@@ -18,7 +18,7 @@
%{?sle15_python_module_pythons}
Name: python-typed-ast
-Version: 1.5.4
+Version: 1.5.5
Release: 0
Summary: A fork of Python 2 and 3 ast modules with type comment support
License: Apache-2.0
++++++ typed_ast-1.5.4.tar.gz -> typed_ast-1.5.5.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/typed_ast-1.5.4/PKG-INFO new/typed_ast-1.5.5/PKG-INFO
--- old/typed_ast-1.5.4/PKG-INFO 2022-05-21 23:11:36.865009800 +0200
+++ new/typed_ast-1.5.5/PKG-INFO 2023-07-04 00:56:33.786288300 +0200
@@ -1,13 +1,13 @@
Metadata-Version: 2.1
Name: typed_ast
-Version: 1.5.4
+Version: 1.5.5
Summary: a fork of Python 2 and 3 ast modules with type comment support
Home-page: https://github.com/python/typed_ast
Author: David Fisher
License: Apache License 2.0
Platform: POSIX
Platform: Windows
-Classifier: Development Status :: 5 - Production/Stable
+Classifier: Development Status :: 7 - Inactive
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Operating System :: POSIX
@@ -17,10 +17,24 @@
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
+Classifier: Programming Language :: Python :: 3.11
Classifier: Topic :: Software Development
Requires-Python: >=3.6
License-File: LICENSE
+===========
+End of life
+===========
+
+This project is no longer maintained.
+
+Use the standard library `ast` module instead.
+See https://github.com/python/typed_ast/issues/179.
+
+===========
+Description
+===========
+
`typed_ast` is a Python 3 package that provides a Python 2.7 and Python 3
parser similar to the standard `ast` library. Unlike `ast` below Python 3.8,
the parsers in
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/typed_ast-1.5.4/README.md
new/typed_ast-1.5.5/README.md
--- old/typed_ast-1.5.4/README.md 2022-05-21 23:11:28.000000000 +0200
+++ new/typed_ast-1.5.5/README.md 2023-07-04 00:56:26.000000000 +0200
@@ -1,3 +1,10 @@
+# End of life
+
+This project is no longer maintained.
+
+Use the standard library `ast` module instead.
+See https://github.com/python/typed_ast/issues/179.
+
# Typed AST
[](https://travis-ci.org/python/typed_ast)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/typed_ast-1.5.4/setup.py new/typed_ast-1.5.5/setup.py
--- old/typed_ast-1.5.4/setup.py 2022-05-21 23:11:28.000000000 +0200
+++ new/typed_ast-1.5.5/setup.py 2023-07-04 00:56:27.000000000 +0200
@@ -82,6 +82,19 @@
])
long_description = """
+===========
+End of life
+===========
+
+This project is no longer maintained.
+
+Use the standard library `ast` module instead.
+See https://github.com/python/typed_ast/issues/179.
+
+===========
+Description
+===========
+
`typed_ast` is a Python 3 package that provides a Python 2.7 and Python 3
parser similar to the standard `ast` library. Unlike `ast` below Python 3.8,
the parsers in
@@ -111,7 +124,7 @@
license='Apache License 2.0',
platforms = ['POSIX', 'Windows'],
classifiers = [
- 'Development Status :: 5 - Production/Stable',
+ 'Development Status :: 7 - Inactive',
'Environment :: Console',
'Intended Audience :: Developers',
'Operating System :: POSIX',
@@ -121,6 +134,7 @@
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
+ 'Programming Language :: Python :: 3.11',
'Topic :: Software Development',
],
python_requires=">=3.6",
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/typed_ast-1.5.4/typed_ast/__init__.py
new/typed_ast-1.5.5/typed_ast/__init__.py
--- old/typed_ast-1.5.4/typed_ast/__init__.py 2022-05-21 23:11:28.000000000
+0200
+++ new/typed_ast-1.5.5/typed_ast/__init__.py 2023-07-04 00:56:27.000000000
+0200
@@ -1 +1 @@
-__version__ = "1.5.4"
+__version__ = "1.5.5"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/typed_ast-1.5.4/typed_ast.egg-info/PKG-INFO
new/typed_ast-1.5.5/typed_ast.egg-info/PKG-INFO
--- old/typed_ast-1.5.4/typed_ast.egg-info/PKG-INFO 2022-05-21
23:11:36.000000000 +0200
+++ new/typed_ast-1.5.5/typed_ast.egg-info/PKG-INFO 2023-07-04
00:56:33.000000000 +0200
@@ -1,13 +1,13 @@
Metadata-Version: 2.1
Name: typed-ast
-Version: 1.5.4
+Version: 1.5.5
Summary: a fork of Python 2 and 3 ast modules with type comment support
Home-page: https://github.com/python/typed_ast
Author: David Fisher
License: Apache License 2.0
Platform: POSIX
Platform: Windows
-Classifier: Development Status :: 5 - Production/Stable
+Classifier: Development Status :: 7 - Inactive
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Operating System :: POSIX
@@ -17,10 +17,24 @@
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
+Classifier: Programming Language :: Python :: 3.11
Classifier: Topic :: Software Development
Requires-Python: >=3.6
License-File: LICENSE
+===========
+End of life
+===========
+
+This project is no longer maintained.
+
+Use the standard library `ast` module instead.
+See https://github.com/python/typed_ast/issues/179.
+
+===========
+Description
+===========
+
`typed_ast` is a Python 3 package that provides a Python 2.7 and Python 3
parser similar to the standard `ast` library. Unlike `ast` below Python 3.8,
the parsers in