Skip to content

Commit

Permalink
add 3.11 support to classifiers and ci and optimize ci config matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
cwmeijer committed Aug 3, 2023
1 parent 2a024bd commit f479f69
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 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
1 change: 1 addition & 0 deletions 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 Down

0 comments on commit f479f69

Please sign in to comment.