Skip to content

Commit

Permalink
Drop Python 3.9 Support (#599)
Browse files Browse the repository at this point in the history
* remove 3.9 support and  workflows

* update release-notes.rst
  • Loading branch information
cyschneck authored Apr 22, 2024
1 parent 2780913 commit 9150633
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
fail-fast: false
matrix:
os: [ "ubuntu-latest", "macos-latest", "windows-latest" ]
python-version: ["3.9", "3.10", "3.11", "3.12"]
python-version: ["3.10", "3.11", "3.12"]
steps:
- name: checkout
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
fail-fast: false
matrix:
os: [ "ubuntu-latest", "macos-14", "windows-latest" ]
python-version: ["3.9", "3.10", "3.11", "3.12"]
python-version: ["3.10", "3.11", "3.12"]
steps:
- name: checkout
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion build_envs/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: gc-docs
channels:
- conda-forge
dependencies:
- python>=3.9,<3.13
- python>=3.10,<3.13
- pre_commit
- geocat-datafiles
- geocat-viz
Expand Down
2 changes: 1 addition & 1 deletion build_envs/environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: geocat_comp_build
channels:
- conda-forge
dependencies:
- python>=3.9,<3.13 # minimum support 3.9
- python>=3.10,<3.13 # minimum support 3.10
- cf_xarray>=0.3.1 # min version 0.3.1 for dependencies
- cftime
- dask
Expand Down
2 changes: 2 additions & 0 deletions docs/release-notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,10 @@ Upcoming release

Internal Changes
^^^^^^^^^^^^^^^^
* Drop Python 3.9 Support by `Cora Schneck`_ in (:pr:`599`)
* Reduce DeprecationWarnings in testing by `Cora Schneck`_ in (:pr:`582`)


v2024.03.0 (March 29, 2024)
---------------------------
This release includes a bug fix for ``delta_pressure``.
Expand Down
3 changes: 1 addition & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ classifiers =
Intended Audience :: Science/Research
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Expand All @@ -24,7 +23,7 @@ classifiers =
[options]
zip_safe = False
include_package_data = True
python_requires = >=3.9, <3.13
python_requires = >=3.10, <3.13
packages = find_namespace:
setup_requires =
setuptools_scm
Expand Down

0 comments on commit 9150633

Please sign in to comment.