Skip to content

Commit 1d3d13b

Browse files
authored
Merge branch 'master' into 1548_pyreverse_type_annotations
2 parents 4dc5dc5 + 99589b0 commit 1d3d13b

7 files changed

+13
-11
lines changed

.github/workflows/ci.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ jobs:
220220
. venv/bin/activate
221221
pytest --benchmark-disable --cov --cov-report= tests/
222222
- name: Upload coverage artifact
223-
uses: actions/[email protected].3
223+
uses: actions/[email protected].4
224224
with:
225225
name: coverage-${{ matrix.python-version }}
226226
path: .coverage
@@ -256,7 +256,7 @@ jobs:
256256
echo "Failed to restore Python venv from cache"
257257
exit 1
258258
- name: Download all coverage artifacts
259-
uses: actions/[email protected].9
259+
uses: actions/[email protected].10
260260
- name: Combine coverage results
261261
run: |
262262
. venv/bin/activate
@@ -313,7 +313,7 @@ jobs:
313313
run: >-
314314
echo "::set-output name=datetime::"$(date "+%Y%m%d_%H%M")
315315
- name: Upload benchmark artifact
316-
uses: actions/[email protected].3
316+
uses: actions/[email protected].4
317317
with:
318318
name:
319319
benchmark-${{ runner.os }}-${{ matrix.python-version }}_${{

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ repos:
2727
args: [--py36-plus]
2828
exclude: *fixtures
2929
- repo: https://github.com/PyCQA/isort
30-
rev: 5.8.0
30+
rev: 5.9.1
3131
hooks:
3232
- id: isort
3333
- repo: https://github.com/psf/black
@@ -77,7 +77,7 @@ repos:
7777
types: [python]
7878
args: []
7979
require_serial: true
80-
additional_dependencies: ["types-pkg_resources==0.1.2", "types-toml==0.1.2"]
80+
additional_dependencies: ["types-pkg_resources==0.1.3", "types-toml==0.1.3"]
8181
exclude: tests/functional/|tests/input|tests/extensions/data|tests/regrtest_data/|tests/data/|doc/|bin/
8282
- repo: https://github.com/pre-commit/mirrors-prettier
8383
rev: v2.3.1

ChangeLog

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ Release date: TBA
1313

1414
Closes #1548
1515

16+
* astroid has been upgraded to 2.6.0
17+
1618
* ``setuptools_scm`` has been removed and replaced by ``tbump`` in order to not
1719
have hidden runtime dependencies to setuptools
1820

requirements_test.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ tbump~=6.3.2
77
pyenchant~=3.2
88
pytest-cov~=2.12
99
pytest-profiling~=1.7
10-
pytest-xdist~=2.2
10+
pytest-xdist~=2.3
1111
# Type packages for mypy
12-
types-pkg_resources==0.1.2
13-
types-toml==0.1.2
12+
types-pkg_resources==0.1.3
13+
types-toml==0.1.3

requirements_test_min.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
-e .
2-
astroid==2.6.0-dev0 # Pinned to a specific version for tests
2+
astroid==2.6.0 # Pinned to a specific version for tests
33
pytest~=6.2
44
pytest-benchmark~=3.4

requirements_test_pre_commit.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
# in .pre-commit-config.yaml
33
black==21.6b0;python_full_version>="3.6.2"
44
flake8==3.9.2
5-
isort==5.8.0
5+
isort==5.9.1
66
mypy==0.902

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ project_urls =
4141
[options]
4242
packages = find:
4343
install_requires =
44-
astroid>=2.6.0-dev0,<2.7 # (You should also upgrade requirements_test_min.txt)
44+
astroid>=2.6.0,<2.7 # (You should also upgrade requirements_test_min.txt)
4545
isort>=4.2.5,<6
4646
mccabe>=0.6,<0.7
4747
toml>=0.7.1

0 commit comments

Comments
 (0)