Skip to content

Commit 2c52c91

Browse files
Updated files with 'repo_helper'. (#55)
Co-authored-by: repo-helper[bot] <74742576+repo-helper[bot]@users.noreply.github.com>
1 parent 2987e5c commit 2c52c91

File tree

5 files changed

+12
-9
lines changed

5 files changed

+12
-9
lines changed

.github/workflows/python_ci.yml

+2-2
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.7,3.8,3.9,3.10,3.11,3.12,3.13.0-rc.1'
25+
USING_COVERAGE: '3.7,3.8,3.9,3.10,3.11,3.12,3.13'
2626

2727
strategy:
2828
fail-fast: False
@@ -34,7 +34,7 @@ jobs:
3434
- {python-version: "3.10", testenvs: "py310,build", experimental: False}
3535
- {python-version: "3.11", testenvs: "py311,build", experimental: False}
3636
- {python-version: "3.12", testenvs: "py312,build", experimental: False}
37-
- {python-version: "3.13.0-rc.1", testenvs: "py313-dev,build", experimental: True}
37+
- {python-version: "3.13", testenvs: "py313-dev,build", experimental: True}
3838

3939
steps:
4040
- name: Checkout 🛎️

.github/workflows/python_ci_linux.yml

+2-2
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.7,3.8,3.9,3.10,3.11,3.12,3.13.0-rc.1'
26+
USING_COVERAGE: '3.7,3.8,3.9,3.10,3.11,3.12,3.13'
2727

2828
strategy:
2929
fail-fast: False
@@ -35,7 +35,7 @@ jobs:
3535
- {python-version: "3.10", testenvs: "py310,build", experimental: False}
3636
- {python-version: "3.11", testenvs: "py311,build", experimental: False}
3737
- {python-version: "3.12", testenvs: "py312,build", experimental: False}
38-
- {python-version: "3.13.0-rc.1", testenvs: "py313-dev,build", experimental: True}
38+
- {python-version: "3.13", testenvs: "py313-dev,build", experimental: True}
3939

4040
steps:
4141
- name: Checkout 🛎️

.github/workflows/python_ci_macos.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
runs-on: "macos-13"
2323
continue-on-error: ${{ matrix.config.experimental }}
2424
env:
25-
USING_COVERAGE: '3.7,3.8,3.9,3.10,3.11,3.12,3.13.0-rc.1'
25+
USING_COVERAGE: '3.7,3.8,3.9,3.10,3.11,3.12,3.13'
2626

2727
strategy:
2828
fail-fast: False
@@ -34,7 +34,7 @@ jobs:
3434
- {python-version: "3.10", testenvs: "py310,build", experimental: False}
3535
- {python-version: "3.11", testenvs: "py311,build", experimental: False}
3636
- {python-version: "3.12", testenvs: "py312,build", experimental: False}
37-
- {python-version: "3.13.0-rc.1", testenvs: "py313-dev,build", experimental: True}
37+
- {python-version: "3.13", testenvs: "py313-dev,build", experimental: True}
3838

3939
steps:
4040
- name: Checkout 🛎️

.pre-commit-config.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ci:
88

99
repos:
1010
- repo: https://github.com/repo-helper/pyproject-parser
11-
rev: v0.11.0
11+
rev: v0.11.1
1212
hooks:
1313
- id: reformat-pyproject
1414

@@ -42,7 +42,7 @@ repos:
4242
exclude: ^(doc-source/conf|__pkginfo__|setup|tests/.*)\.py$
4343
- id: bind-requirements
4444

45-
- repo: https://github.com/domdfcoding/flake8-dunder-all
45+
- repo: https://github.com/python-formate/flake8-dunder-all
4646
rev: v0.4.1
4747
hooks:
4848
- id: ensure-dunder-all
@@ -86,7 +86,7 @@ repos:
8686
- id: formate
8787
exclude: ^(doc-source/conf|__pkginfo__|setup)\.(_)?py$
8888

89-
- repo: https://github.com/domdfcoding/dep_checker
89+
- repo: https://github.com/python-coincidence/dep_checker
9090
rev: v0.8.0
9191
hooks:
9292
- id: dep_checker

tox.ini

+3
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
# * testenv
66
# * testenv:.package
77
# * testenv:py313-dev
8+
# * testenv:py313
89
# * testenv:py312-dev
910
# * testenv:py312
1011
# * testenv:docs
@@ -50,12 +51,14 @@ setenv =
5051
PIP_DISABLE_PIP_VERSION_CHECK=1
5152

5253
[testenv:py313-dev]
54+
download = True
5355
setenv =
5456
PYTHONDEVMODE=1
5557
PIP_DISABLE_PIP_VERSION_CHECK=1
5658
UNSAFE_PYO3_SKIP_VERSION_CHECK=1
5759

5860
[testenv:py312]
61+
download = True
5962
setenv =
6063
PYTHONDEVMODE=1
6164
PIP_DISABLE_PIP_VERSION_CHECK=1

0 commit comments

Comments
 (0)