Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ jobs:
fail-fast: false
matrix:
os: [ ubuntu-latest, macos-latest, windows-latest ]
python-version: [ "3.11", "3.12", "3.13", "3.14" ]
python-version: [ "3.12", "3.13", "3.14" ]
defaults:
run:
shell: bash
Expand Down Expand Up @@ -134,7 +134,7 @@ jobs:
fail-fast: false
matrix:
os: [ ubuntu-latest, windows-latest ]
python-version: [ "3.11", "3.12", "3.13", "3.14" ]
python-version: [ "3.12", "3.13", "3.14" ]
defaults:
run:
shell: bash
Expand Down Expand Up @@ -189,7 +189,7 @@ jobs:
fail-fast: false
matrix:
os: [ ubuntu-latest, macos-latest, windows-latest ]
python-version: [ "3.11", "3.12", "3.13", "3.14" ]
python-version: [ "3.12", "3.13", "3.14" ]
defaults:
run:
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ and additional functionality specific to the MODFLOW API. Currently it is a join

## Installation

`modflowapi` requires Python 3.11+, with:
`modflowapi` requires Python 3.12+, with:

```shell
numpy
Expand Down
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,12 @@ classifiers = [
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Scientific/Engineering :: Hydrology",
]
requires-python = ">=3.11"
requires-python = ">=3.12"
dependencies = [
"numpy>=1.23",
"pandas>=2.2.2",
Expand Down
Loading