Skip to content

Commit

Permalink
Drop support for Python 3.8 (#564)
Browse files Browse the repository at this point in the history
  • Loading branch information
andersy005 authored Jan 24, 2023
1 parent 8879adf commit a239f23
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ['3.8', '3.9', '3.10']
python-version: ['3.9', '3.10', '3.11']
steps:
- uses: actions/checkout@v3
with:
Expand Down Expand Up @@ -77,7 +77,7 @@ jobs:
micromamba-version: 'latest'
environment-file: ci/environment-upstream-dev.yml
extra-specs: |
python=3.10
python=3.11
- name: Install intake-esm
run: |
Expand Down
2 changes: 1 addition & 1 deletion ci/environment-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ dependencies:
- pip
- pydantic>=1.9
- python-graphviz
- python=3.10
- python=3.11
- s3fs >=2022.11.0
- sphinx
- sphinx-copybutton
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@
'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',
]

Expand All @@ -35,7 +35,7 @@
description='An intake plugin for parsing an Earth System Model (ESM) catalog and loading netCDF files and/or Zarr stores into Xarray datasets.',
long_description=long_description,
long_description_content_type='text/markdown',
python_requires='>=3.8',
python_requires='>=3.9',
maintainer='NCAR XDev Team',
maintainer_email='[email protected]',
classifiers=CLASSIFIERS,
Expand Down

0 comments on commit a239f23

Please sign in to comment.