Skip to content

Commit

Permalink
Drop Python 3.9 (#23)
Browse files Browse the repository at this point in the history
  • Loading branch information
tomwhite authored Sep 23, 2024
1 parent 4540cc0 commit 036e76b
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
shell: bash -l {0}
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11"]
python-version: ["3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ Interface for using [cubed](https://github.com/cubed-dev/cubed) with [xarray](ht

## Requirements

- Cubed version >=0.14.2
- Xarray version >=2024.02.0
- Cubed version >=0.17.0
- Xarray version >=2024.09.0

## Installation

Expand Down
10 changes: 5 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,16 @@ classifiers = [
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering",
]
requires-python = ">=3.9"
requires-python = ">=3.10"
dependencies = [
"numpy >= 1.17.1",
"xarray >= 2024.02.0",
"cubed >= 0.14.2",
"numpy >= 1.22",
"xarray >= 2024.09.0",
"cubed >= 0.17.0",
]


Expand Down

0 comments on commit 036e76b

Please sign in to comment.