Skip to content

Commit

Permalink
build: drop support for python 3.8. closes#942
Browse files Browse the repository at this point in the history
  • Loading branch information
dfguerrerom committed Sep 20, 2024
1 parent fbc55d1 commit 1907448
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/unit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
python-version: ["3.9", "3.10", "3.11"]
include:
- os: macos-latest # macos test
python-version: "3.10"
Expand Down
4 changes: 1 addition & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,11 @@ classifiers = [
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
requires-python = ">=3.8"
requires-python = ">=3.9"
dependencies = [
# building widgets
"tomli",
Expand All @@ -33,7 +32,6 @@ dependencies = [
# read local data
"rioxarray",
"dask", # used by rioxarray in the inspector
'geopandas==0.13.2; python_version == "3.8"',
'geopandas>=0.14.0; python_version > "3.8"',
"matplotlib",
"jupyter-server-proxy", # required for localtileserver
Expand Down

0 comments on commit 1907448

Please sign in to comment.