Skip to content

Commit

Permalink
Drop support for Python 3.8, 3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
DiamondJoseph committed Aug 6, 2024
1 parent bbb5c73 commit ee67653
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
strategy:
matrix:
runs-on: ["ubuntu-latest"] # can add windows-latest, macos-latest
python-version: ["3.8", "3.9", "3.10", "3.11"]
python-version: ["3.10", "3.11"]
include:
# Include one that runs in the dev environment
- runs-on: "ubuntu-latest"
Expand Down
9 changes: 1 addition & 8 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,6 @@ name = "scanspec"
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
Expand All @@ -27,11 +24,7 @@ requires-python = ">=3.7"

[project.optional-dependencies]
# Plotting
plotting = [
# make sure a python 3.9 compatible scipy and matplotlib are selected
"scipy>=1.5.4",
"matplotlib>=3.2.2",
]
plotting = ["scipy", "matplotlib"]
# REST service support
service = ["fastapi==0.99", "uvicorn"]
# For development tests/docs
Expand Down

0 comments on commit ee67653

Please sign in to comment.