Skip to content

Commit

Permalink
Drop python 3.9 support (#40)
Browse files Browse the repository at this point in the history
  • Loading branch information
deltamarnix authored Oct 8, 2024
1 parent 83602f6 commit d8a13e7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: 3.9
python-version: "3.10"
cache: 'pip'
cache-dependency-path: pyproject.toml

Expand All @@ -44,7 +44,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: 3.9
python-version: "3.10"

- name: Install Python packages
run: |
Expand All @@ -68,7 +68,7 @@ jobs:
fail-fast: false
matrix:
os: [ ubuntu-22.04, macos-12, windows-2022 ]
python: [ 3.9, "3.10", "3.11", "3.12" ]
python: [ "3.10", "3.11", "3.12" ]
env:
GCC_V: 11
steps:
Expand Down
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,12 @@ classifiers = [
"Intended Audience :: Science/Research",
"License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Hydrology",
]
requires-python = ">=3.9"
requires-python = ">=3.10"
dependencies = [
"attrs", # todo: bounds?
"cattrs", # todo: bounds?
Expand Down

0 comments on commit d8a13e7

Please sign in to comment.