Skip to content

Commit c8a8460

Browse files
[repo-helper] Configuration Update (#33)
* Updated files with 'repo_helper'. * Updated files with 'repo_helper'. --------- Co-authored-by: repo-helper[bot] <74742576+repo-helper[bot]@users.noreply.github.com>
1 parent 89a0e50 commit c8a8460

File tree

5 files changed

+11
-9
lines changed

5 files changed

+11
-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.6,3.7,3.8,3.9,3.10,3.11,3.12,3.13.0-alpha.6'
25+
USING_COVERAGE: '3.6,3.7,3.8,3.9,3.10,3.11,3.12,3.13.0-beta.1'
2626

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

4040
steps:
4141
- 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.6,3.7,3.8,3.9,3.10,3.11,3.12,3.13.0-alpha.6'
26+
USING_COVERAGE: '3.6,3.7,3.8,3.9,3.10,3.11,3.12,3.13.0-beta.1'
2727

2828
strategy:
2929
fail-fast: False
@@ -36,7 +36,7 @@ jobs:
3636
- {python-version: "3.10", testenvs: "py310-click{7,8},build", experimental: False}
3737
- {python-version: "3.11", testenvs: "py311-click{7,8},build", experimental: False}
3838
- {python-version: "3.12", testenvs: "py312-click{7,8},build", experimental: False}
39-
- {python-version: "3.13.0-alpha.6", testenvs: "py313-dev-click{7,8},build", experimental: True}
39+
- {python-version: "3.13.0-beta.1", testenvs: "py313-dev-click{7,8},build", experimental: True}
4040

4141
steps:
4242
- 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.6,3.7,3.8,3.9,3.10,3.11,3.12,3.13.0-alpha.6'
25+
USING_COVERAGE: '3.6,3.7,3.8,3.9,3.10,3.11,3.12,3.13.0-beta.1'
2626

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

4040
steps:
4141
- name: Checkout 🛎️

pyproject.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@ readme = "README.rst"
1010
keywords = [ "docs", "formatting", "linting",]
1111
dynamic = [ "requires-python", "classifiers", "dependencies",]
1212

13+
[project.license]
14+
file = "LICENSE"
15+
1316
[[project.authors]]
1417
name = "Dominic Davis-Foster"
1518
1619

17-
[project.license]
18-
file = "LICENSE"
19-
2020
[project.urls]
2121
Homepage = "https://github.com/python-formate/snippet-fmt"
2222
"Issue Tracker" = "https://github.com/python-formate/snippet-fmt/issues"

tox.ini

+2
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,7 @@ setenv =
7575
setenv =
7676
PYTHONDEVMODE=1
7777
PIP_DISABLE_PIP_VERSION_CHECK=1
78+
UNSAFE_PYO3_SKIP_VERSION_CHECK=1
7879

7980
[testenv:py312]
8081
setenv =
@@ -243,3 +244,4 @@ setenv =
243244
setenv =
244245
PYTHONDEVMODE=1
245246
PIP_DISABLE_PIP_VERSION_CHECK=1
247+
UNSAFE_PYO3_SKIP_VERSION_CHECK=1

0 commit comments

Comments
 (0)