Skip to content

Commit

Permalink
Drop support for python 3.8 in deployment and CI
Browse files Browse the repository at this point in the history
  • Loading branch information
xylar committed Oct 20, 2023
1 parent 03a2cfe commit 052014c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
shell: bash -l {0}
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
python-version: ["3.9", "3.10", "3.11"]
steps:
- id: skip_check
uses: fkirc/skip-duplicate-actions@master
Expand Down
2 changes: 1 addition & 1 deletion deploy/conda-dev-spec.template
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# $ conda create --name <env> --file <this file>

# Base
python>=3.8
python>=3.9,<3.12
cartopy
cartopy_offlinedata
cmocean
Expand Down
3 changes: 1 addition & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ project_urls =
classifiers =
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Expand All @@ -22,7 +21,7 @@ classifiers =
[options]
packages = find:
include_package_data = True
python_requires = >=3.8,<3.12
python_requires = >=3.9,<3.12
install_requires =
cartopy
cmocean
Expand Down

0 comments on commit 052014c

Please sign in to comment.