Skip to content

Commit

Permalink
Drop support for Python 3.7 and 3.8 (#90)
Browse files Browse the repository at this point in the history
They are outside of our support range and are causing problems with the
GitHub Actions workflows on OSX.
  • Loading branch information
leouieda authored Aug 23, 2024
1 parent bb7e359 commit 1611fe6
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,9 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu, macos, windows]
python: ["3.7", "3.12"]
python: ["3.9", "3.12"]
include:
- python: "3.7"
- python: "3.9"
dependencies: oldest
- python: "3.12"
dependencies: latest
Expand Down
4 changes: 3 additions & 1 deletion doc/compatibility.rst
Original file line number Diff line number Diff line change
Expand Up @@ -56,4 +56,6 @@ releases to ensure compatibility:
* - **Python version**
- **Last compatible release**
* - 3.7
- Not yet released
- v0.5.0
* - 3.8
- v0.5.0
2 changes: 1 addition & 1 deletion doc/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ There are different ways to install xlandsat:
Which Python?
-------------

You'll need **Python >= 3.7**.
You'll need **Python >= 3.9**.
See :ref:`python-versions` if you require support for older versions.

Dependencies
Expand Down
12 changes: 5 additions & 7 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,19 +19,17 @@ classifiers = [
"Topic :: Software Development :: Libraries",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"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",
"Programming Language :: Python :: 3.12",
]
requires-python = ">=3.7"
requires-python = ">=3.9"
dependencies = [
"numpy>=1.19",
"scipy>=1.5",
"xarray>=0.16",
"scikit-image>=0.18",
"numpy>=1.23",
"scipy>=1.9",
"xarray>=2022.6.0",
"scikit-image>=0.20",
"pooch>=1.3.0",
]

Expand Down

0 comments on commit 1611fe6

Please sign in to comment.