Skip to content

Commit 38e2784

Browse files
Bump astroid to 2.12.10
1 parent f5e168e commit 38e2784

9 files changed

+12
-10
lines changed

.github/workflows/changelog.yml

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

77
env:
88
# Also change CACHE_VERSION in the other workflows
9-
CACHE_VERSION: 26
9+
CACHE_VERSION: 27
1010
DEFAULT_PYTHON: "3.10"
1111

1212
jobs:

.github/workflows/checks.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
pull_request: ~
99

1010
env:
11-
CACHE_VERSION: 26
11+
CACHE_VERSION: 27
1212
DEFAULT_PYTHON: "3.10"
1313
PRE_COMMIT_CACHE: ~/.cache/pre-commit
1414

.github/workflows/primer-test.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ on:
1313
- ".github/workflows/primer-test.yaml"
1414

1515
env:
16-
CACHE_VERSION: 26
16+
CACHE_VERSION: 27
1717

1818
concurrency:
1919
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}

.github/workflows/primer_comment.yaml

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

1515
env:
1616
# This needs to be the SAME as in the Main and PR job
17-
CACHE_VERSION: 26
17+
CACHE_VERSION: 27
1818

1919
permissions:
2020
contents: read

.github/workflows/primer_run_main.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ concurrency:
1616

1717
env:
1818
# This needs to be the SAME as in the PR and comment job
19-
CACHE_VERSION: 26
19+
CACHE_VERSION: 27
2020

2121
jobs:
2222
run-primer:

.github/workflows/primer_run_pr.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ concurrency:
2525

2626
env:
2727
# This needs to be the SAME as in the Main and comment job
28-
CACHE_VERSION: 26
28+
CACHE_VERSION: 27
2929

3030
jobs:
3131
run-primer:

.github/workflows/tests.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
- doc/data/messages/**
1111

1212
env:
13-
CACHE_VERSION: 26
13+
CACHE_VERSION: 27
1414

1515
jobs:
1616
tests-linux:

pyproject.toml

+3-2
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,11 @@ requires-python = ">=3.7.2"
3434
dependencies = [
3535
"dill>=0.2",
3636
"platformdirs>=2.2.0",
37-
# Also upgrade requirements_test_min.txt if you are bumping astroid.
37+
# Also upgrade requirements_test_min.txt and all the CACHE_VERSION in
38+
# github actions if you are bumping astroid.
3839
# Pinned to dev of second minor update to allow editable installs and fix primer issues,
3940
# see https://github.com/PyCQA/astroid/issues/1341
40-
"astroid>=2.12.9,<=2.14.0-dev0",
41+
"astroid>=2.12.10,<=2.14.0-dev0",
4142
"isort>=4.2.5,<6",
4243
"mccabe>=0.6,<0.8",
4344
"tomli>=1.1.0;python_version<'3.11'",

requirements_test_min.txt

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
-e .[testutils,spelling]
22
# astroid dependency is also defined in pyproject.toml
3-
astroid==2.12.9 # Pinned to a specific version for tests
3+
# You need to increment the CACHE_VERSION in github actions too
4+
astroid==2.12.10 # Pinned to a specific version for tests
45
typing-extensions~=4.3
56
pytest~=7.1
67
pytest-benchmark~=3.4

0 commit comments

Comments
 (0)