Skip to content

Commit

Permalink
workflows: add python 3.13 to test matrix (bug 1914897)
Browse files Browse the repository at this point in the history
  • Loading branch information
zzzeid committed Nov 6, 2024
1 parent ec3c8b4 commit 66bf023
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/run-compile-requirements.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,21 +13,21 @@ jobs:
with:
requirements_files: '["base.in dev.in gui-dev.in gui.in linters.in"]'
os: '["ubuntu-latest"]'
python: '["3.8", "3.9", "3.10", "3.11", "3.12"]'
python: '["3.9", "3.10", "3.11", "3.12", "3.13"]'

call-compile-requirements-windows:
uses: ./.github/workflows/compile-requirements.yml
with:
requirements_files: '["base.in dev.in gui-dev.in gui.in linters.in"]'
os: '["windows-latest"]'
python: '["3.9", "3.10", "3.11", "3.12"]'
python: '["3.9", "3.10", "3.11", "3.12", "3.13"]'

call-compile-requirements-macos:
uses: ./.github/workflows/compile-requirements.yml
with:
requirements_files: '["base.in base.universal2.in dev.in gui-dev.in gui.in linters.in"]'
os: '["macos-latest"]'
python: '["3.9", "3.10", "3.11", "3.12"]'
python: '["3.9", "3.10", "3.11", "3.12", "3.13"]'

commit-and-push:
uses: ./.github/workflows/compile-requirements.yml
Expand Down
10 changes: 5 additions & 5 deletions requirements/dev.in
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
--no-binary coverage
coverage==7.6.1
coveralls==4.0.1
mock==5.1.0
pytest==8.3.2
pytest-mock==3.14.0
coverage
coverall
mock
pytest
pytest-mock
2 changes: 1 addition & 1 deletion requirements/gui-dev.in
Original file line number Diff line number Diff line change
@@ -1 +1 @@
pytest-qt==4.4.0
pytest-qt
2 changes: 1 addition & 1 deletion requirements/linters.in
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
--no-binary mypy-extensions
flake8>=6.0.0; python_version >= '3.8'
flake8>=6.0.0
flake8-black
glean-parser
isort
Expand Down

0 comments on commit 66bf023

Please sign in to comment.