Skip to content

Commit

Permalink
Add support for Python 3.12 (#83)
Browse files Browse the repository at this point in the history
* Add support for Python 3.12

* Replace distutils.LooseVersion by audeer
  • Loading branch information
hagenw authored Jul 24, 2024
1 parent cac712c commit 57cd0ac
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ '3.8', '3.9', '3.10', '3.11' ]
python-version: [ '3.8', '3.9', '3.10', '3.11', '3.12' ]

steps:
- uses: actions/checkout@v4
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ classifiers = [
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Topic :: Scientific/Engineering',
]
dependencies = [
Expand Down
4 changes: 2 additions & 2 deletions tests/test_basic.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
from distutils.version import LooseVersion

import pytest
from sphinx import __version__

from audeer import LooseVersion

import sphinx_audeering_theme


Expand Down

0 comments on commit 57cd0ac

Please sign in to comment.