Skip to content

Commit 58bb7fb

Browse files
Updated files with 'repo_helper'. (#32)
Co-authored-by: repo-helper[bot] <74742576+repo-helper[bot]@users.noreply.github.com>
1 parent c50f446 commit 58bb7fb

File tree

7 files changed

+20
-20
lines changed

7 files changed

+20
-20
lines changed

.github/workflows/flake8.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020

2121
steps:
2222
- name: Checkout 🛎️
23-
uses: "actions/checkout@v3"
23+
uses: "actions/checkout@v4"
2424

2525
- name: Check for changed files
2626
uses: dorny/paths-filter@v2
@@ -33,7 +33,7 @@ jobs:
3333
3434
- name: Setup Python 🐍
3535
if: steps.changes.outputs.code == 'true'
36-
uses: "actions/setup-python@v4"
36+
uses: "actions/setup-python@v5"
3737
with:
3838
python-version: "3.8"
3939

.github/workflows/mypy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525

2626
steps:
2727
- name: Checkout 🛎️
28-
uses: "actions/checkout@v3"
28+
uses: "actions/checkout@v4"
2929

3030
- name: Check for changed files
3131
uses: dorny/paths-filter@v2
@@ -38,7 +38,7 @@ jobs:
3838
3939
- name: Setup Python 🐍
4040
if: steps.changes.outputs.code == 'true'
41-
uses: "actions/setup-python@v4"
41+
uses: "actions/setup-python@v5"
4242
with:
4343
python-version: "3.8"
4444

.github/workflows/python_ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
runs-on: "windows-2019"
2323
continue-on-error: ${{ matrix.config.experimental }}
2424
env:
25-
USING_COVERAGE: '3.10,3.11,3.12,3.13.0-alpha.2,pypy-3.6,pypy-3.7,pypy-3.8,pypy-3.9'
25+
USING_COVERAGE: '3.10,3.11,3.12,3.13.0-alpha.3,pypy-3.6,pypy-3.7,pypy-3.8,pypy-3.9'
2626

2727
strategy:
2828
fail-fast: False
@@ -31,15 +31,15 @@ jobs:
3131
- {python-version: "3.10", testenvs: "py310,build", experimental: False}
3232
- {python-version: "3.11", testenvs: "py311,build", experimental: False}
3333
- {python-version: "3.12", testenvs: "py312,build", experimental: False}
34-
- {python-version: "3.13.0-alpha.2", testenvs: "py313-dev,build", experimental: True}
34+
- {python-version: "3.13.0-alpha.3", testenvs: "py313-dev,build", experimental: True}
3535
- {python-version: "pypy-3.6", testenvs: "pypy36", experimental: False}
3636
- {python-version: "pypy-3.7", testenvs: "pypy37,build", experimental: False}
3737
- {python-version: "pypy-3.8", testenvs: "pypy38,build", experimental: False}
3838
- {python-version: "pypy-3.9", testenvs: "pypy39,build", experimental: True}
3939

4040
steps:
4141
- name: Checkout 🛎️
42-
uses: "actions/checkout@v3"
42+
uses: "actions/checkout@v4"
4343

4444
- name: Check for changed files
4545
if: startsWith(github.ref, 'refs/tags/') != true
@@ -54,7 +54,7 @@ jobs:
5454
- name: Setup Python 🐍
5555
id: setup-python
5656
if: ${{ steps.changes.outputs.code == 'true' || steps.changes.outcome == 'skipped' }}
57-
uses: "actions/setup-python@v4"
57+
uses: "actions/setup-python@v5"
5858
with:
5959
python-version: "${{ matrix.config.python-version }}"
6060

.github/workflows/python_ci_linux.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
runs-on: "ubuntu-20.04"
2424
continue-on-error: ${{ matrix.config.experimental }}
2525
env:
26-
USING_COVERAGE: '3.10,3.11,3.12,3.13.0-alpha.2,pypy-3.6,pypy-3.7,pypy-3.8,pypy-3.9'
26+
USING_COVERAGE: '3.10,3.11,3.12,3.13.0-alpha.3,pypy-3.6,pypy-3.7,pypy-3.8,pypy-3.9'
2727

2828
strategy:
2929
fail-fast: False
@@ -32,15 +32,15 @@ jobs:
3232
- {python-version: "3.10", testenvs: "py310,build", experimental: False}
3333
- {python-version: "3.11", testenvs: "py311,build", experimental: False}
3434
- {python-version: "3.12", testenvs: "py312,build", experimental: False}
35-
- {python-version: "3.13.0-alpha.2", testenvs: "py313-dev,build", experimental: True}
35+
- {python-version: "3.13.0-alpha.3", testenvs: "py313-dev,build", experimental: True}
3636
- {python-version: "pypy-3.6", testenvs: "pypy36,build", experimental: False}
3737
- {python-version: "pypy-3.7", testenvs: "pypy37,build", experimental: False}
3838
- {python-version: "pypy-3.8", testenvs: "pypy38,build", experimental: False}
3939
- {python-version: "pypy-3.9", testenvs: "pypy39,build", experimental: True}
4040

4141
steps:
4242
- name: Checkout 🛎️
43-
uses: "actions/checkout@v3"
43+
uses: "actions/checkout@v4"
4444

4545
- name: Check for changed files
4646
if: startsWith(github.ref, 'refs/tags/') != true
@@ -55,7 +55,7 @@ jobs:
5555
- name: Setup Python 🐍
5656
id: setup-python
5757
if: ${{ steps.changes.outputs.code == 'true' || steps.changes.outcome == 'skipped' }}
58-
uses: "actions/setup-python@v4"
58+
uses: "actions/setup-python@v5"
5959
with:
6060
python-version: "${{ matrix.config.python-version }}"
6161

@@ -79,11 +79,11 @@ jobs:
7979
runs-on: "ubuntu-20.04"
8080
steps:
8181
- name: Checkout 🛎️
82-
uses: "actions/checkout@v3"
82+
uses: "actions/checkout@v4"
8383
if: startsWith(github.ref, 'refs/tags/')
8484

8585
- name: Setup Python 🐍
86-
uses: "actions/setup-python@v4"
86+
uses: "actions/setup-python@v5"
8787
if: startsWith(github.ref, 'refs/tags/')
8888
with:
8989
python-version: 3.8

.github/workflows/python_ci_macos.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
runs-on: "macos-latest"
2323
continue-on-error: ${{ matrix.config.experimental }}
2424
env:
25-
USING_COVERAGE: '3.10,3.11,3.12,3.13.0-alpha.2,pypy-3.7,pypy-3.8,pypy-3.9'
25+
USING_COVERAGE: '3.10,3.11,3.12,3.13.0-alpha.3,pypy-3.7,pypy-3.8,pypy-3.9'
2626

2727
strategy:
2828
fail-fast: False
@@ -31,14 +31,14 @@ jobs:
3131
- {python-version: "3.10", testenvs: "py310,build", experimental: False}
3232
- {python-version: "3.11", testenvs: "py311,build", experimental: False}
3333
- {python-version: "3.12", testenvs: "py312,build", experimental: False}
34-
- {python-version: "3.13.0-alpha.2", testenvs: "py313-dev,build", experimental: True}
34+
- {python-version: "3.13.0-alpha.3", testenvs: "py313-dev,build", experimental: True}
3535
- {python-version: "pypy-3.7", testenvs: "pypy37,build", experimental: False}
3636
- {python-version: "pypy-3.8", testenvs: "pypy38,build", experimental: False}
3737
- {python-version: "pypy-3.9", testenvs: "pypy39,build", experimental: True}
3838

3939
steps:
4040
- name: Checkout 🛎️
41-
uses: "actions/checkout@v3"
41+
uses: "actions/checkout@v4"
4242

4343
- name: Check for changed files
4444
if: startsWith(github.ref, 'refs/tags/') != true
@@ -53,7 +53,7 @@ jobs:
5353
- name: Setup Python 🐍
5454
id: setup-python
5555
if: ${{ steps.changes.outputs.code == 'true' || steps.changes.outcome == 'skipped' }}
56-
uses: "actions/setup-python@v4"
56+
uses: "actions/setup-python@v5"
5757
with:
5858
python-version: "${{ matrix.config.python-version }}"
5959

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ See https://github.com/TypedDjango/pytest-mypy-plugins for the actual pytest plu
8787
:target: https://github.com/python-coincidence/pytest-mypy-plugins-shim/commit/master
8888
:alt: GitHub last commit
8989

90-
.. |maintained| image:: https://img.shields.io/maintenance/yes/2023
90+
.. |maintained| image:: https://img.shields.io/maintenance/yes/2024
9191
:alt: Maintenance
9292

9393
.. |pypi-downloads| image:: https://img.shields.io/pypi/dm/pytest-mypy-plugins-shim

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ deps =
9797
flake8-dunder-all>=0.1.1
9898
flake8-encodings>=0.1.0
9999
flake8-github-actions>=0.1.0
100-
flake8-noqa>=1.1.0
100+
flake8-noqa>=1.1.0,<=1.2.2
101101
flake8-pyi>=20.10.0,<=22.8.0
102102
flake8-pytest-style>=1.3.0
103103
flake8-quotes>=3.3.0

0 commit comments

Comments
 (0)