Skip to content

Commit

Permalink
Merge branch 'main' into winpath
Browse files Browse the repository at this point in the history
  • Loading branch information
gaborbernat authored Dec 28, 2023
2 parents 63afdeb + 54acb7d commit 189ceae
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/create_tests_package_lists.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
run:
nox --non-interactive --session create_test_package_list-${{ matrix.python-version }} -- ./new_tests_packages
- name: Store reports as artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
name: lists
path: ./new_tests_packages
6 changes: 3 additions & 3 deletions .github/workflows/exhaustive_package_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
continue-on-error: true
run: nox --non-interactive --session test_all_packages-${{ matrix.python-version }}
- name: Store reports as artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
name: reports-raw
path: reports
Expand All @@ -39,7 +39,7 @@ jobs:

steps:
- name: Get report artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@v3
with:
name: reports-raw
- name: Collate reports
Expand All @@ -57,7 +57,7 @@ jobs:
cat all_packages_deps_errors_* > all_deps_errors_lf.txt
tr -d '\r' < all_deps_errors_lf.txt > reports/all_deps_errors.txt
- name: Store collated and raw reports as artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
name: reports-final
path: reports
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ jobs:
run: nox --error-on-missing-interpreters --non-interactive --session zipapp
- name: Test zipapp by installing black
run: python ./pipx.pyz install black
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v3
with:
name: pipx.pyz
path: pipx.pyz
Expand Down Expand Up @@ -114,7 +114,7 @@ jobs:
needs: [tests, man, zipapp]
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v3
with:
name: pipx.pyz
- name: Upload to release
Expand Down
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ repos:
hooks:
- id: pyproject-fmt
- repo: https:/astral-sh/ruff-pre-commit
rev: v0.1.8
rev: v0.1.9
hooks:
- id: ruff-format
- id: ruff
args: [ "--fix", "--unsafe-fixes", "--exit-non-zero-on-fix"]
- repo: https:/pre-commit/mirrors-mypy
rev: v1.7.1
rev: v1.8.0
hooks:
- id: mypy
args: ['--warn-unused-ignores', '--strict-equality','--no-implicit-optional', '--check-untyped-defs']
Expand Down

0 comments on commit 189ceae

Please sign in to comment.