Skip to content

Commit

Permalink
add python 3.11 and remove python 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
kafitzgerald committed Sep 29, 2023
1 parent 03925e8 commit 3396116
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 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
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 3396116

Please sign in to comment.