Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Drop Python 3.9 Support #599

Merged
merged 2 commits into from
Apr 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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`)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think we probably want this in a different category. Maybe "Compatibility Notes" or "Breaking Changes"? @anissa111, I've been meaning to ask - is there a list of categories you use for release notes?

* 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
Loading