8000 Updated files with 'repo_helper'. (#110) · domdfcoding/domdf_python_tools@33538a2 · GitHub
[go: up one dir, main page]

Skip to content

Commit 33538a2

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

File tree

5 files changed

+13
-14
lines changed

5 files changed

+13
-14
lines changed

.github/workflows/python_ci.yml

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

2727
strategy:
2828
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-alpha.3", testenvs: "py313-dev,build", experimental: True}
38+
- {python-version: "3.13.0-alpha.4", testenvs: "py313-dev,build", experimental: True}
3939
- {python-version: "pypy-3.6", testenvs: "pypy36", experimental: False}
4040
- {python-version: "pypy-3.7", testenvs: "pypy37,build", experimental: False}
4141
- {python-version: "pypy-3.8", testenvs: "pypy38,build", experimental: False}
@@ -76,7 +76,7 @@ jobs:
7676
run: python -m tox -e "${{ matrix.config.testenvs }}" -s false
7777

7878
- name: "Upload Coverage 🚀"
79-
uses: actions/upload-artifact@v3
79+
uses: actions/upload-artifact@v4
8080
if: ${{ always() && steps.setup-python.outcome == 'success' }}
8181
with:
8282
name: "coverage-${{ matrix.config.python-version }}"

.github/workflows/python_ci_linux.yml

Lines changed: 5 additions & 5 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.6,3.7,3.8,3.9,3.10,3.11,3.12,3.13.0-alpha.3,pypy-3.6,pypy-3.7,pypy-3.8,pypy-3.9,pypy-3.10'
26+
USING_COVERAGE: '3.6,3.7,3.8,3.9,3.10,3.11,3.12,3.13.0-alpha.4,pypy-3.6,pypy-3.7,pypy-3.8,pypy-3.9,pypy-3.10'
2727

2828
strategy:
2929
fail-fast: False
@@ -36,7 +36,7 @@ jobs:
3636
- {python-version: "3.10", testenvs: "py310,build", experimental: False}
3737
- {python-version: "3.11", testenvs: "py311,build", experimental: False}
3838
- {python-version: "3.12", testenvs: "py312,build", experimental: False}
39-
- {python-version: "3.13.0-alpha.3", testenvs: "py313-dev,build", experimental: True}
39+
- {python-version: "3.13.0-alpha.4", testenvs: "py313-dev,build", experimental: True}
4040
- {python-version: "pypy-3.6", testenvs: "pypy36,build", experimental: False}
4141
- {python-version: "pypy-3.7", testenvs: "pypy37,build", experimental: False}
4242
- {python-version: "pypy-3.8", testenvs: "pypy38,build", experimental: False}
@@ -78,7 +78,7 @@ jobs:
7878
run: python -m tox -e "${{ matrix.config.testenvs }}" -s false
7979

8080
- name: "Upload Coverage 🚀"
81-
uses: actions/upload-artifact@v3
81+
uses: actions/upload-artifact@v4
8282
if: ${{ always() && steps.setup-python.outcome == 'success' }}
8383
with:
8484
name: "coverage-${{ matrix.config.python-version }}"
@@ -103,7 +103,7 @@ jobs:
103103
python -m pip install --upgrade "coveralls>=3.0.0" coverage_pyver_pragma
104104
105105
- name: "Download Coverage 🪂"
106-
uses: actions/download-artifact@v3
106+
uses: actions/download-artifact@v4
107107
with:
108108
path: coverage
109109

@@ -121,7 +121,7 @@ jobs:
121121
122122
- name: "Upload Combined Coverage Artefact 🚀"
123123
if: ${{ steps.show.outcome != 'failure' }}
124-
uses: actions/upload-artifact@v3
124+
uses: actions/upload-artifact@v4
125125
with:
126126
name: "combined-coverage"
127127
path: .coverage

.github/workflows/python_ci_macos.yml

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

2727
strategy:
2828
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-alpha.3", testenvs: "py313-dev,build", experimental: True}
38+
- {python-version: "3.13.0-alpha.4", testenvs: "py313-dev,build", experimental: True}
3939
- {python-version: "pypy-3.7", testenvs: "pypy37,build", experimental: False}
4040
- {python-version: "pypy-3.8", testenvs: "pypy38,build", experimental: False}
4141
- {python-version: "pypy-3.9", testenvs: "pypy39,build", experimental: True}
@@ -75,7 +75,7 @@ jobs:
7575
run: python -m tox -e "${{ matrix.config.testenvs }}" -s false
7676

7777
- name: "Upload Coverage 🚀"
78-
uses: actions/upload-artifact@v3
78+
uses: actions/upload-artifact@v4
7979
if: ${{ always() && steps.setup-python.outcome == 'success' }}
8080
with:
8181
name: "coverage-${{ matrix.config.python-version }}"

formate.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,4 +56,4 @@ known_third_party = [
5656
"requests",
5757
"typing_extensions",
5858
]
59-
known_first_party = "domdf_python_tools"
59+
known_first_party = [ "domdf_python_tools",]

tox.ini

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,8 +96,7 @@ changedir = {toxinidir}
9696
deps =
9797
build[virtualenv]>=0.3.1
9898
check-wheel-contents>=0.1.0
99-
twine>=3.2.0; python_version < "3.13"
100-
twine@git+https://github.com/pypa/twine; python_version >= "3.13"
99+
twine>=3.2.0
101100
cryptography<40; implementation_name == "pypy" and python_version <= "3.7"
102101
commands =
103102
python -m build --sdist --wheel "{toxinidir}"

0 commit comments

Comments
 (0)
0