Skip to content

Commit

Permalink
add py3.11 to testing matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
jeshraghian committed Oct 14, 2023
1 parent 6ade133 commit e151b06
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10']
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10']
python-version: ['3.8', '3.9', '3.10', '3.11']

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.rst
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ Before you submit a pull request, check that it meets these guidelines:
2. If the pull request adds functionality, the docs should be updated. Put
your new functionality into a function with a docstring, and add the
feature to the list in README.rst.
3. The pull request should work for Python 3.7, 3.8, 3.9 and for PyPy. Check
3. The pull request should work for Python 3.8, 3.9, 3.10, 3.11 and for PyPy. Check
https://github.com/jeshraghian/snntorch/actions
and make sure that the tests pass for all supported Python versions.

Expand Down
3 changes: 2 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
[tox]
envlist = py38, py39, py310, flake8
envlist = py38, py39, py310, py311, flake8

[gh-actions]
python =
3.11: py311
3.10: py310
3.9: py39
3.8: py38
Expand Down

0 comments on commit e151b06

Please sign in to comment.