- Update to 2.3.3:

* Update six version to 1.13.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-astroid?expand=0&rev=47
This commit is contained in:
Matej Cepl 2019-11-14 10:33:37 +00:00 committed by Git OBS Bridge
parent 7380d20f7d
commit d30a5a3913
5 changed files with 15 additions and 12 deletions

View File

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

3
astroid-2.3.3.tar.gz Normal file
View File

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

View File

@ -1,3 +1,9 @@
-------------------------------------------------------------------
Thu Nov 14 11:24:24 CET 2019 - Matej Cepl <mcepl@suse.com>
- Update to 2.3.3:
* Update six version to 1.13.
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Nov 1 08:34:46 UTC 2019 - Tomáš Chvátal <tchvatal@suse.com> Fri Nov 1 08:34:46 UTC 2019 - Tomáš Chvátal <tchvatal@suse.com>

View File

@ -1,7 +1,7 @@
# #
# spec file for package python-astroid # spec file for package python-astroid
# #
# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany. # Copyright (c) 2019 SUSE LLC.
# #
# All modifications and additions to the file contributed by third parties # All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed # remain the property of their copyright owners, unless otherwise agreed
@ -19,7 +19,7 @@
%define skip_python2 1 %define skip_python2 1
%{?!python_module:%define python_module() python-%{**} python3-%{**}} %{?!python_module:%define python_module() python-%{**} python3-%{**}}
Name: python-astroid Name: python-astroid
Version: 2.3.2 Version: 2.3.3
Release: 0 Release: 0
Summary: Representation of Python source as an AST for pylint Summary: Representation of Python source as an AST for pylint
License: LGPL-2.1-or-later License: LGPL-2.1-or-later

View File

@ -1,17 +1,14 @@
Index: astroid-2.3.1/astroid/__pkginfo__.py --- a/astroid/__pkginfo__.py
=================================================================== +++ b/astroid/__pkginfo__.py
--- astroid-2.3.1.orig/astroid/__pkginfo__.py
+++ astroid-2.3.1/astroid/__pkginfo__.py
@@ -22,10 +22,10 @@ numversion = tuple(int(elem) for elem in @@ -22,10 +22,10 @@ numversion = tuple(int(elem) for elem in
extras_require = {} extras_require = {}
install_requires = [ install_requires = [
- "lazy_object_proxy==1.4.*", - "lazy_object_proxy==1.4.*",
- "six==1.12", + "lazy_object_proxy>=1.4",
"six~=1.12",
- "wrapt==1.11.*", - "wrapt==1.11.*",
- 'typed-ast>=1.4.0,<1.5;implementation_name== "cpython" and python_version<"3.8"', - 'typed-ast>=1.4.0,<1.5;implementation_name== "cpython" and python_version<"3.8"',
+ "lazy_object_proxy>=1.4",
+ "six>=1.12",
+ "wrapt>=1.11", + "wrapt>=1.11",
+ 'typed-ast>=1.4.0;implementation_name== "cpython" and python_version<"3.7"', + 'typed-ast>=1.4.0;implementation_name== "cpython" and python_version<"3.7"',
] ]