Skip to content

Commit 3aeb37e

Browse files
[repo-helper] Configuration Update (#38)
* Updated files with 'repo_helper'. * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --------- Co-authored-by: repo-helper[bot] <74742576+repo-helper[bot]@users.noreply.github.com> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
1 parent 371cb95 commit 3aeb37e

File tree

6 files changed

+10
-9
lines changed

6 files changed

+10
-9
lines changed

.github/workflows/python_ci.yml

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

7070
- name: "Upload Coverage 🚀"
71-
uses: actions/upload-artifact@v3
71+
uses: actions/upload-artifact@v4
7272
if: ${{ always() && steps.setup-python.outcome == 'success' }}
7373
with:
7474
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
@@ -70,7 +70,7 @@ jobs:
7070
run: python -m tox -e "${{ matrix.config.testenvs }}" -s false
7171

7272
- name: "Upload Coverage 🚀"
73-
uses: actions/upload-artifact@v3
73+
uses: actions/upload-artifact@v4
7474
if: ${{ always() && steps.setup-python.outcome == 'success' }}
7575
with:
7676
name: "coverage-${{ matrix.config.python-version }}"
@@ -95,7 +95,7 @@ jobs:
9595
python -m pip install --upgrade "coveralls>=3.0.0" coverage_pyver_pragma
9696
9797
- name: "Download Coverage 🪂"
98-
uses: actions/download-artifact@v3
98+
uses: actions/download-artifact@v4
9999
with:
100100
path: coverage
101101

@@ -113,7 +113,7 @@ jobs:
113113
114114
- name: "Upload Combined Coverage Artefact 🚀"
115115
if: ${{ steps.show.outcome != 'failure' }}
116-
uses: actions/upload-artifact@v3
116+
uses: actions/upload-artifact@v4
117117
with:
118118
name: "combined-coverage"
119119
path: .coverage

.github/workflows/python_ci_macos.yml

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

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

formate.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,5 +54,5 @@ known_third_party = [
5454
"requests",
5555
"yapf_isort",
5656
]
57-
known_first_party = "notebook2script"
57+
known_first_party = [ "notebook2script",]
5858
line_length = 115

tests/test_pointless_checker.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
1-
# 3rd party
1+
# stdlib
22
import os
3+
4+
# 3rd party
35
from coincidence.regressions import AdvancedFileRegressionFixture
46

57
# this package

tox.ini

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,7 @@ changedir = {toxinidir}
6868
deps =
6969
build[virtualenv]>=0.3.1
7070
check-wheel-contents>=0.1.0
71-
twine>=3.2.0; python_version < "3.13"
72-
twine@git+https://github.com/pypa/twine; python_version >= "3.13"
71+
twine>=3.2.0
7372
cryptography<40; implementation_name == "pypy" and python_version <= "3.7"
7473
commands =
7574
python -m build --sdist --wheel "{toxinidir}"

0 commit comments

Comments
 (0)