Skip to content

Commit

Permalink
Merge pull request #162 from kafitzgerald/issue92
Browse files Browse the repository at this point in the history
Add support for Python 3.11 and remove support for Python 3.8
  • Loading branch information
jukent authored Sep 29, 2023
2 parents 03925e8 + cd791c1 commit b42d49f
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
fail-fast: false
matrix:
os: [ "ubuntu-latest", "macos-latest"]
python-version: [ "3.8", "3.9", "3.10" ]
python-version: [ "3.9", "3.10", "3.11" ]
steps:
- name: Cancel previous runs
uses: styfle/[email protected]
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: gv-docs
channels:
- conda-forge
dependencies:
- python>=3.8, <=3.10
- python>=3.9, <3.12
- cartopy
- cmaps
- matplotlib
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_viz_build
channels:
- conda-forge
dependencies:
- python>=3.8, <=3.10
- python>=3.9, <3.12
- cartopy
- make
- matplotlib
Expand Down
2 changes: 1 addition & 1 deletion build_envs/upstream-dev-environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: geocat_viz_upstream
channels:
- conda-forge
dependencies:
- python>=3.7
- python>=3.9
- geocat-comp
- cf_xarray>=0.3.1
- geocat-datafiles
Expand Down
6 changes: 5 additions & 1 deletion docs/release-notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,13 @@
Release Notes
=============

New Features
^^^^^^^^^
* Added Python 3.11 and removed Python 3.8 `Katelyn FitzGerald`_ in (:pr:`162`)

Bug Fixes
^^^^^^^^^
* Xarray unpinned by `Katelyn Fitzgerald`_ in (:pr:`159`)
* Xarray unpinned by `Katelyn FitzGerald`_ in (:pr:`159`)

v2023.09.0 (September 7, 2023)
------------------------------
Expand Down
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,15 @@ classifiers =
Intended Audience :: Science/Research
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
Topic :: Scientific/Engineering

[options]
zip_safe = False
include_package_data = True
python_requires = >=3.8, <3.11
python_requires = >=3.9, <3.12
package_dir =
=src
packages =
Expand Down

0 comments on commit b42d49f

Please sign in to comment.