Skip to content

Commit c50f446

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

File tree

4 files changed

+9
-8
lines changed

4 files changed

+9
-8
lines changed

.github/workflows/python_ci.yml

Lines changed: 2 additions & 2 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.1,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.2,pypy-3.6,pypy-3.7,pypy-3.8,pypy-3.9'
2626

2727
strategy:
2828
fail-fast: False
@@ -31,7 +31,7 @@ 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.1", testenvs: "py313-dev,build", experimental: True}
34+
- {python-version: "3.13.0-alpha.2", 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}

.github/workflows/python_ci_linux.yml

Lines changed: 2 additions & 2 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.1,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.2,pypy-3.6,pypy-3.7,pypy-3.8,pypy-3.9'
2727

2828
strategy:
2929
fail-fast: False
@@ -32,7 +32,7 @@ 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.1", testenvs: "py313-dev,build", experimental: True}
35+
- {python-version: "3.13.0-alpha.2", 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}

.github/workflows/python_ci_macos.yml

Lines changed: 2 additions & 2 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.1,pypy-3.7,pypy-3.8,pypy-3.9'
25+
USING_COVERAGE: '3.10,3.11,3.12,3.13.0-alpha.2,pypy-3.7,pypy-3.8,pypy-3.9'
2626

2727
strategy:
2828
fail-fast: False
@@ -31,7 +31,7 @@ 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.1", testenvs: "py313-dev,build", experimental: True}
34+
- {python-version: "3.13.0-alpha.2", 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}

tox.ini

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,8 @@ changedir = {toxinidir}
7676
deps =
7777
build[virtualenv]>=0.3.1
7878
check-wheel-contents>=0.1.0
79-
twine>=3.2.0
79+
twine>=3.2.0; python_version < "3.13"
80+
twine@git+https://github.com/pypa/twine; python_version >= "3.13"
8081
cryptography<40; implementation_name == "pypy" and python_version <= "3.7"
8182
commands =
8283
python -m build --sdist --wheel "{toxinidir}"
@@ -96,7 +97,7 @@ deps =
9697
flake8-dunder-all>=0.1.1
9798
flake8-encodings>=0.1.0
9899
flake8-github-actions>=0.1.0
99-
flake8-noqa>=1.1.0,<=1.2.2
100+
flake8-noqa>=1.1.0
100101
flake8-pyi>=20.10.0,<=22.8.0
101102
flake8-pytest-style>=1.3.0
102103
flake8-quotes>=3.3.0

0 commit comments

Comments
 (0)