Skip to content

Commit 6be3161

Browse files
Updated files with 'repo_helper'. (#106)
Co-authored-by: repo-helper[bot] <74742576+repo-helper[bot]@users.noreply.github.com>
1 parent 437b985 commit 6be3161

File tree

5 files changed

+12
-9
lines changed

5 files changed

+12
-9
lines changed

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

2727
strategy:
2828
fail-fast: False
@@ -35,7 +35,7 @@ jobs:
3535
- {python-version: "3.10", testenvs: "py310-click{7.1,8.0,8.1},build", experimental: False}
3636
- {python-version: "3.11", testenvs: "py311-click{7.1,8.0,8.1},build", experimental: False}
3737
- {python-version: "3.12", testenvs: "py312-click{7.1,8.0,8.1},build", experimental: False}
38-
- {python-version: "3.13.0-rc.1", testenvs: "py313-dev-click{7.1,8.0,8.1},build", experimental: True}
38+
- {python-version: "3.13", testenvs: "py313-dev-click{7.1,8.0,8.1},build", experimental: True}
3939
- {python-version: "pypy-3.6", testenvs: "pypy36-click{7.1,8.0,8.1}", experimental: False}
4040
- {python-version: "pypy-3.7", testenvs: "pypy37-click{7.1,8.0,8.1},build", experimental: False}
4141
- {python-version: "pypy-3.8", testenvs: "pypy38-click{7.1,8.0,8.1},build", experimental: False}

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

2828
strategy:
2929
fail-fast: False
@@ -36,7 +36,7 @@ jobs:
3636
- {python-version: "3.10", testenvs: "py310-click{7.1,8.0,8.1},build", experimental: False}
3737
- {python-version: "3.11", testenvs: "py311-click{7.1,8.0,8.1},build", experimental: False}
3838
- {python-version: "3.12", testenvs: "py312-click{7.1,8.0,8.1},build", experimental: False}
39-
- {python-version: "3.13.0-rc.1", testenvs: "py313-dev-click{7.1,8.0,8.1},build", experimental: True}
39+
- {python-version: "3.13", testenvs: "py313-dev-click{7.1,8.0,8.1},build", experimental: True}
4040
- {python-version: "pypy-3.6", testenvs: "pypy36-click{7.1,8.0,8.1},build", experimental: False}
4141
- {python-version: "pypy-3.7", testenvs: "pypy37-click{7.1,8.0,8.1},build", experimental: False}
4242
- {python-version: "pypy-3.8", testenvs: "pypy38-click{7.1,8.0,8.1},build", experimental: False}

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

2727
strategy:
2828
fail-fast: False
@@ -35,7 +35,7 @@ jobs:
3535
- {python-version: "3.10", testenvs: "py310-click{7.1,8.0,8.1},build", experimental: False}
3636
- {python-version: "3.11", testenvs: "py311-click{7.1,8.0,8.1},build", experimental: False}
3737
- {python-version: "3.12", testenvs: "py312-click{7.1,8.0,8.1},build", experimental: False}
38-
- {python-version: "3.13.0-rc.1", testenvs: "py313-dev-click{7.1,8.0,8.1},build", experimental: True}
38+
- {python-version: "3.13", testenvs: "py313-dev-click{7.1,8.0,8.1},build", experimental: True}
3939
- {python-version: "pypy-3.7", testenvs: "pypy37-click{7.1,8.0,8.1},build", experimental: False}
4040
- {python-version: "pypy-3.8", testenvs: "pypy38-click{7.1,8.0,8.1},build", experimental: False}
4141
- {python-version: "pypy-3.9", testenvs: "pypy39-click{7.1,8.0,8.1},build", experimental: True}

Diff for: .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

Diff for: tox.ini

+3
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
# * envlists
55
# * testenv:.package
66
# * testenv:py313-dev
7+
# * testenv:py313
78
# * testenv:py312-dev
89
# * testenv:py312
910
# * testenv:docs
@@ -65,12 +66,14 @@ setenv =
6566
PIP_DISABLE_PIP_VERSION_CHECK=1
6667

6768
[testenv:py313-dev]
69+
download = True
6870
setenv =
6971
PYTHONDEVMODE=1
7072
PIP_DISABLE_PIP_VERSION_CHECK=1
7173
UNSAFE_PYO3_SKIP_VERSION_CHECK=1
7274

7375
[testenv:py312]
76+
download = True
7477
setenv =
7578
PYTHONDEVMODE=1
7679
PIP_DISABLE_PIP_VERSION_CHECK=1

0 commit comments

Comments
 (0)