Skip to content

Commit

Permalink
Deprecate Python 3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
JCGoran committed Mar 13, 2024
1 parent af9f37c commit d477eb4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
fail-fast: true
matrix:
os: [ "ubuntu-latest" ]
python-version: [ "3.7", "3.9", "3.12" ]
python-version: [ "3.8", "3.9", "3.12" ]

runs-on: ${{ matrix.os }}
steps:
Expand Down
5 changes: 1 addition & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,10 @@ authors = [{ name = "JCGoran", email = "goran.jelic-cizmek@unige.ch" }]
license = {file = "MIT"}
readme = "README.md"

requires-python = ">=3.7,<4"
requires-python = ">=3.8,<4"
dependencies = [
"numpy==1.21.6;python_version=='3.7'",
"numpy>1.22;python_version>='3.8'",
"scipy==1.7.3;python_version=='3.7'",
"scipy>1.7.3;python_version>='3.8'",
"matplotlib==3.5.3;python_version=='3.7'",
"matplotlib>3.5.3;python_version>='3.8'",
"importlib_metadata;python_version<'3.9'",
"sympy",
Expand Down

0 comments on commit d477eb4

Please sign in to comment.