Skip to content

Commit

Permalink
Drop Python 3.7 and Python 3.8 support (#134)
Browse files Browse the repository at this point in the history
  • Loading branch information
andersy005 authored Jan 10, 2024
1 parent 10c0d83 commit b51c0b7
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.7", "3.8", "3.9"]
python-version: ["3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v3

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nightly.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
micromamba-version: "latest"
environment-file: ci/environment-upstream-dev.yml
extra-specs: |
python=3.9
python=3.10
- name: Install intake-thredds
run: |
python -m pip install . --no-deps
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.black]
line-length = 100
target-version = ['py38']
target-version = ['py39']
skip-string-normalization = true

[build-system]
Expand All @@ -9,7 +9,7 @@ requires = ["setuptools>=45", "wheel", "setuptools_scm>=6.2"]

[tool.ruff]
line-length = 100
target-version = "py38"
target-version = "py39"
builtins = ["ellipsis"]
# Exclude a variety of commonly ignored directories.
exclude = [
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@
'Intended Audience :: Science/Research',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'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 @@ -31,7 +31,7 @@
description='Intake interface to THREDDS data catalogs.',
long_description=long_description,
long_description_content_type='text/markdown',
python_requires='>=3.7',
python_requires='>=3.9',
maintainer='NCAR XDev Team',
maintainer_email='[email protected]',
url='https://github.com/intake/intake-thredds',
Expand Down

0 comments on commit b51c0b7

Please sign in to comment.