Skip to content

Commit

Permalink
Upgrade python in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
iver56 committed Sep 2, 2024
1 parent 24cacdc commit 8969984
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8]
python-version: [3.9]

# Timeout: https://stackoverflow.com/a/59076067/4521646
timeout-minutes: 10
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test_formatting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Python 3.8
- name: Set up Python 3.9
uses: actions/setup-python@v2
with:
python-version: 3.8
python-version: 3.9

- name: Install Black and flake8
run: pip install black==22.3 flake8
run: pip install black==23.12.1 flake8
- name: Run Black
run: python -m black --config=pyproject.toml --check torch_audiomentations tests test_fixtures

Expand Down

0 comments on commit 8969984

Please sign in to comment.