Skip to content

Commit

Permalink
Update to python 3.13 (#278)
Browse files Browse the repository at this point in the history
  • Loading branch information
ralphbean authored Jan 24, 2025
1 parent ec1a3db commit 723c765
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tox.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
id: test
uses: fedora-python/tox-github-action@main
with:
tox_env: py39,py312,lint
tox_env: py39,py313,lint
dnf_install: >-
--repo fedora --repo updates
krb5-devel
Expand Down
2 changes: 1 addition & 1 deletion .readthedocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ version: 2
build:
os: ubuntu-22.04
tools:
python: "3.12"
python: "3.13"
# You can also specify other tool versions:
# nodejs: "20"
# rust: "1.70"
Expand Down
8 changes: 4 additions & 4 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[tox]
envlist = py39,py312,lint
envlist = py39,py313,lint

[testenv]
setenv =
DEFAULT_FROM = [email protected]
DEFAULT_SERVER = mock_server
INITIALIZE=1
basepython =
py312: python3.12
py313: python3.13
py39: python3.9
deps =
-r{toxinidir}/requirements.txt
Expand All @@ -16,11 +16,11 @@ sitepackages = True
allowlist_externals = /usr/bin/flake8
commands =
coverage run -m pytest {posargs} --ignore=tests/integration_tests
# Add the following line locally to get an HTML report --cov-report html:htmlcov-py312
# Add the following line locally to get an HTML report --cov-report html:htmlcov-py313

[testenv:lint]
skip_install = true
basepython = python3.12
basepython = python3.13
deps =
flake8
commands =
Expand Down

0 comments on commit 723c765

Please sign in to comment.