Skip to content

Commit db0a32c

Browse files
committed
add support for python 3.12
1 parent 1ea07ec commit db0a32c

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

.github/workflows/build.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424

2525
- uses: ./.github/actions/install-python-and-package
2626
with:
27-
python-version: '3.11'
27+
python-version: '3.12'
2828

2929
- name: Run unit tests
3030
run: pytest -v
@@ -40,10 +40,10 @@ jobs:
4040
fail-fast: false
4141
matrix:
4242
os: ['ubuntu-latest', 'macos-latest', 'windows-latest']
43-
python-version: ['3.9', '3.11']
43+
python-version: ['3.9', '3.12']
4444
exclude:
4545
# already tested in build_single job
46-
- python-version: 3.11
46+
- python-version: 3.12
4747
os: ubuntu-latest
4848
steps:
4949
- uses: actions/checkout@v3
@@ -66,7 +66,7 @@ jobs:
6666
- uses: actions/checkout@v3
6767
- uses: ./.github/actions/install-python-and-package
6868
with:
69-
python-version: '3.11'
69+
python-version: '3.12'
7070
extras-require: dev
7171
- name: Run downloader test
7272
run: python -m pytest -v --downloader -k downloader
@@ -80,7 +80,7 @@ jobs:
8080
- uses: actions/checkout@v3
8181
- uses: ./.github/actions/install-python-and-package
8282
with:
83-
python-version: '3.11'
83+
python-version: '3.12'
8484
extras-require: dev,dashboard
8585

8686
- name: Ensure browser is installed

setup.cfg

+2-1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ classifiers =
1616
Programming Language :: Python :: 3.9
1717
Programming Language :: Python :: 3.10
1818
Programming Language :: Python :: 3.11
19+
Programming Language :: Python :: 3.12
1920
description = Deep Insight And Neural Network Analysis
2021
keywords =
2122
XAI
@@ -30,7 +31,7 @@ version = 1.7.0
3031
license = Apache License 2.0
3132

3233
[options]
33-
python_requires = >=3.8,<3.12
34+
python_requires = >=3.8,<3.13
3435
zip_safe = False
3536
include_package_data = True
3637
packages = find_namespace:

0 commit comments

Comments
 (0)