Skip to content

Commit

Permalink
Merge pull request #109 from ESGF/python313
Browse files Browse the repository at this point in the history
retire python 3.8 and add support for python 3.13
  • Loading branch information
valeriupredoi authored Oct 28, 2024
2 parents 5b99cdd + d57a389 commit cd65b58
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
fail-fast: false
name: Python ${{ matrix.python-version }}
steps:
Expand All @@ -38,6 +38,8 @@ jobs:
- run: python -V
- name: Install 📦
run: pip install -e .[develop]
- name: Inspect environment
run: conda list
- name: Lint with flake8 ⚙️
run: flake8
- name: Run tests
Expand Down
4 changes: 2 additions & 2 deletions environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ channels:
dependencies:
# installation
- pip
- python>=3.8
- python >=3.9
- requests
- requests_cache
- jinja2
- defusedxml
- webob
- webob >=1.8.9 # Python 3.13 support
- myproxyclient >=2.1.1
# testing
- flake8
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,11 @@
'Topic :: Scientific/Engineering',
"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",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
],
# Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
keywords='',
Expand All @@ -42,7 +42,7 @@
download_url='https://github.com/ESGF/esgf-pyclient',
license='BSD',
# This qualifier can be used to selectively exclude Python versions
python_requires=">=3.8.0",
python_requires=">=3.9.0",
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
zip_safe=False,
Expand Down

0 comments on commit cd65b58

Please sign in to comment.