Skip to content

Commit 5afc7d2

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

File tree

5 files changed

+7
-8
lines changed

5 files changed

+7
-8
lines changed

.github/workflows/python_ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ jobs:
7373
run: python -m tox -e "${{ matrix.config.testenvs }}" -s false
7474

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

.github/workflows/python_ci_linux.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -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 }}"
@@ -100,7 +100,7 @@ jobs:
100100
python -m pip install --upgrade "coveralls>=3.0.0" coverage_pyver_pragma
101101
102102
- name: "Download Coverage 🪂"
103-
uses: actions/download-artifact@v3
103+
uses: actions/download-artifact@v4
104104
with:
105105
path: coverage
106106

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

.github/workflows/python_ci_macos.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ jobs:
7272
run: python -m tox -e "${{ matrix.config.testenvs }}" -s false
7373

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

formate.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,4 +54,4 @@ known_third_party = [
5454
"requests",
5555
"typing_extensions",
5656
]
57-
known_first_party = "flake8_github_actions"
57+
known_first_party = [ "flake8_github_actions",]

tox.ini

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,7 @@ changedir = {toxinidir}
7171
deps =
7272
build[virtualenv]>=0.3.1
7373
check-wheel-contents>=0.1.0
74-
twine>=3.2.0; python_version < "3.13"
75-
twine@git+https://github.com/pypa/twine; python_version >= "3.13"
74+
twine>=3.2.0
7675
cryptography<40; implementation_name == "pypy" and python_version <= "3.7"
7776
commands =
7877
python -m build --sdist --wheel "{toxinidir}"

0 commit comments

Comments
 (0)