forked from pool/python-astroid
Compare commits
14 Commits
Author | SHA256 | Date | |
---|---|---|---|
cf078417bf | |||
f8769f5066 | |||
341e0118e8 | |||
630b738f58 | |||
4195d1bad8 | |||
b8769bc83f | |||
8406e72f47 | |||
2109829eeb | |||
3c0f3fb1a8 | |||
591b4ef01d | |||
c708150b5c | |||
55c7f0afdf | |||
5ea4b747ff | |||
bb404eda28 |
@@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:c5da09c3adce28afa8686b9753fe7d0c7ad04ace41cfe34f62761c659402de0d
|
|
||||||
size 463962
|
|
3
astroid-3.3.11-gh.tar.gz
Normal file
3
astroid-3.3.11-gh.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:5bb714e739c650e7e31186e1765f7edd33171b2f423ddbddb43b1c37cb6cfbb5
|
||||||
|
size 469464
|
@@ -1,3 +1,61 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jul 23 08:27:09 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||||
|
|
||||||
|
- Update to 3.3.11
|
||||||
|
* Fix a crash when parsing an empty arbitrary expression with
|
||||||
|
``extract_node`` (``extract_node("__()")``).
|
||||||
|
* Fix a crash when parsing a slice called in a decorator on a
|
||||||
|
function that is also decorated with a known ``six`` decorator.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed May 14 09:35:21 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||||
|
|
||||||
|
- Update to 3.3.10
|
||||||
|
* Avoid importing submodules sharing names with standard library modules.
|
||||||
|
* Fix bug where ``pylint code.custom_extension`` would analyze ``code.py``
|
||||||
|
or ``code.pyi`` instead if they existed.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Mar 21 10:38:20 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||||
|
|
||||||
|
- Update to 3.3.9
|
||||||
|
* Fix crash when `sys.modules` contains lazy loader objects
|
||||||
|
during checking.
|
||||||
|
* Upload release assets to PyPI via Trusted Publishing.
|
||||||
|
- Update BuildRequires from pyproject.toml
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Jan 2 14:14:36 UTC 2025 - Dirk Müller <dmueller@suse.com>
|
||||||
|
|
||||||
|
- update to 3.3.8:
|
||||||
|
* Fix inability to import `collections.abc` in python 3.13.1.
|
||||||
|
The reported fixes in astroid 3.3.6 and 3.3.7 did not actually
|
||||||
|
fix this issue.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 22 13:46:15 UTC 2024 - Dirk Müller <dmueller@suse.com>
|
||||||
|
|
||||||
|
- update to 3.3.5:
|
||||||
|
* Control setting local nodes outside of the supposed local's
|
||||||
|
constructor.
|
||||||
|
* Fix Python 3.13 compatibility re: `collections.abc`
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Sep 24 13:54:23 UTC 2024 - Dirk Müller <dmueller@suse.com>
|
||||||
|
|
||||||
|
- update to 3.3.4:
|
||||||
|
* Fix regression with f-string inference.
|
||||||
|
* Fix bug with ``manager.clear_cache()`` not fully clearing
|
||||||
|
cache
|
||||||
|
* Fix a crash from inferring empty format specs.
|
||||||
|
* Fix inference regression with property setters.
|
||||||
|
* Add annotation-only instance attributes to attrs classes to
|
||||||
|
fix `no-member` false positives.
|
||||||
|
* Restore support for soft-deprecated members of the ``typing``
|
||||||
|
module with python 3.13.
|
||||||
|
* Fix a crash introduced in 3.3.0 involving invalid format
|
||||||
|
strings.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Aug 6 09:29:26 UTC 2024 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
Tue Aug 6 09:29:26 UTC 2024 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||||
|
|
||||||
@@ -1530,4 +1588,3 @@ Thu Dec 22 10:09:45 CET 2005 - garloff@suse.de
|
|||||||
references to each assigment statements instead of a single
|
references to each assigment statements instead of a single
|
||||||
reference to the first assigment statement.
|
reference to the first assigment statement.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
|
@@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package python-astroid
|
# spec file for package python-astroid
|
||||||
#
|
#
|
||||||
# Copyright (c) 2024 SUSE LLC
|
# Copyright (c) 2025 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
|
||||||
@@ -18,13 +18,14 @@
|
|||||||
|
|
||||||
%{?sle15_python_module_pythons}
|
%{?sle15_python_module_pythons}
|
||||||
Name: python-astroid
|
Name: python-astroid
|
||||||
Version: 3.3.0
|
Version: 3.3.11
|
||||||
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
|
||||||
URL: https://github.com/pycqa/astroid
|
URL: https://github.com/pycqa/astroid
|
||||||
Source: https://github.com/PyCQA/astroid/archive/refs/tags/v%{version}.tar.gz#/astroid-%{version}-gh.tar.gz
|
Source: https://github.com/PyCQA/astroid/archive/refs/tags/v%{version}.tar.gz#/astroid-%{version}-gh.tar.gz
|
||||||
BuildRequires: %{python_module base >= 3.8}
|
BuildRequires: %{python_module base >= 3.8}
|
||||||
|
BuildRequires: %{python_module mypy}
|
||||||
BuildRequires: %{python_module pip}
|
BuildRequires: %{python_module pip}
|
||||||
BuildRequires: %{python_module pytest}
|
BuildRequires: %{python_module pytest}
|
||||||
BuildRequires: %{python_module setuptools}
|
BuildRequires: %{python_module setuptools}
|
||||||
|
Reference in New Issue
Block a user