Skip to content

Commit

Permalink
Merge pull request labgrid-project#1511 from Bastian-Krause/bst/py3.13
Browse files Browse the repository at this point in the history
Test/Advertise Python 3.13 Support
  • Loading branch information
Emantor authored Oct 21, 2024
2 parents 8d67b3b + bf9bf13 commit 5f0ae27
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/push-pr-unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12']
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
uses: ./.github/workflows/reusable-unit-tests.yml
secrets:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reusable-unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
ruff format --check --diff labgrid/remote/
- name: Test with pytest
run: |
pytest --cov-config .coveragerc --cov=labgrid --local-sshmanager --ssh-username runner -k "not test_docker_with_daemon"
pytest -r a --cov-config .coveragerc --cov=labgrid --local-sshmanager --ssh-username runner -k "not test_docker_with_daemon"
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/scheduled-unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12']
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
branch: ['master']
uses: ./.github/workflows/reusable-unit-tests.yml
secrets:
Expand Down
3 changes: 2 additions & 1 deletion doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,8 @@
}
autodoc_mock_imports = ['onewire',
'gi',
'gi.repository',]
'gi.repository',
'vxi11']

# -- Options for autosection ----------------------------------------------
autosectionlabel_prefix_document = True
Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)",
]
dependencies = [
Expand Down Expand Up @@ -187,7 +188,7 @@ signature-mutators = ["labgrid.step.step"]
[tool.tox]
legacy_tox_ini = """
[tox]
envlist = py39, py310, py311, py312
envlist = py39, py310, py311, py312, py313
isolated_build = true
[testenv]
Expand Down

0 comments on commit 5f0ae27

Please sign in to comment.