Skip to content

Commit 15733b4

Browse files
Upgrade the versions of astroid and dill (#7838)
* [dill] Use dill 0.3.6 for python 3.11 now that dill released it * Upgrade astroid to 2.12.13 * Fix backport job
1 parent 87fedef commit 15733b4

File tree

3 files changed

+4
-6
lines changed

3 files changed

+4
-6
lines changed

.github/workflows/backport.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77

88
permissions:
99
pull-requests: write
10-
content: write
10+
contents: write
1111

1212
jobs:
1313
backport:

pyproject.toml

+2-4
Original file line numberDiff line numberDiff line change
@@ -33,14 +33,12 @@ classifiers = [
3333
]
3434
requires-python = ">=3.7.2"
3535
dependencies = [
36-
# TODO: Remove dill-pylint once dill 0.3.6 is released
37-
"dill>=0.2;python_version<'3.11'",
38-
"dill-pylint>=0.3.6.dev0;python_version>='3.11'",
36+
"dill>=0.2",
3937
"platformdirs>=2.2.0",
4038
# Also upgrade requirements_test_min.txt.
4139
# Pinned to dev of second minor update to allow editable installs and fix primer issues,
4240
# see https://github.com/PyCQA/astroid/issues/1341
43-
"astroid>=2.12.12,<=2.14.0-dev0",
41+
"astroid>=2.12.13,<=2.14.0-dev0",
4442
"isort>=4.2.5,<6",
4543
"mccabe>=0.6,<0.8",
4644
"tomli>=1.1.0;python_version<'3.11'",

requirements_test_min.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
-e .[testutils,spelling]
22
# astroid dependency is also defined in pyproject.toml
3-
astroid==2.12.12 # Pinned to a specific version for tests
3+
astroid==2.12.13 # Pinned to a specific version for tests
44
typing-extensions~=4.4
55
py~=1.11.0
66
pytest~=7.2

0 commit comments

Comments
 (0)