Skip to content

Commit

Permalink
Merge pull request #624 from dianna-ai/623-add-311-support
Browse files Browse the repository at this point in the history
add python 3.11 support
  • Loading branch information
cwmeijer authored Aug 3, 2023
2 parents 64d2c91 + f479f69 commit 5fbeae1
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:

- uses: ./.github/actions/install-python-and-package
with:
python-version: '3.10'
python-version: '3.11'

- name: Run unit tests
run: pytest -v
Expand All @@ -40,7 +40,11 @@ jobs:
fail-fast: false
matrix:
os: ['ubuntu-latest', 'macos-latest', 'windows-latest']
python-version: ['3.8', '3.9', '3.10']
python-version: ['3.8', '3.11']
exclude:
# already tested in build_single job
- python-version: 3.11
os: ubuntu-latest
steps:
- uses: actions/checkout@v3

Expand All @@ -62,7 +66,7 @@ jobs:
- uses: actions/checkout@v3
- uses: ./.github/actions/install-python-and-package
with:
python-version: '3.10'
python-version: '3.11'
extras-require: dev,dashboard

- name: Ensure browser is installed
Expand Down
3 changes: 2 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ classifiers =
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
description = Deep Insight And Neural Network Analysis
keywords =
XAI
Expand All @@ -29,7 +30,7 @@ version = 1.1.0
license = Apache License 2.0

[options]
python_requires = >=3.8,<3.11
python_requires = >=3.8,<3.12
zip_safe = False
include_package_data = True
packages = find_namespace:
Expand Down

0 comments on commit 5fbeae1

Please sign in to comment.