Skip to content

Commit

Permalink
Remove python 3.10 from tests
Browse files Browse the repository at this point in the history
Python 3.10 is not yet supported by scipy, so we can not support it with
ROSS.
  • Loading branch information
raphaeltimbo committed Oct 29, 2021
1 parent 868f926 commit 5039d2a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10"]
python-version: ["3.7", "3.8", "3.9"]
os: [ubuntu-latest, macOS-latest, windows-latest]

steps:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def version(path):
URL = "https://github.com/ross-rotordynamics/ross"
EMAIL = "raphaelts@gmail.com"
AUTHOR = "ROSS developers"
REQUIRES_PYTHON = ">=3.7.0"
REQUIRES_PYTHON = ">=3.7.0, <3.10"
VERSION = version("ross/__init__.py")

# What packages are required for this module to be executed?
Expand Down

0 comments on commit 5039d2a

Please sign in to comment.