Skip to content

Commit

Permalink
Merge pull request #2936 from mraspaud/drop-py39
Browse files Browse the repository at this point in the history
Drop python 3.9
  • Loading branch information
pnuu authored Oct 18, 2024
2 parents d61e6e8 + f9dccad commit b3394c7
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
fail-fast: true
matrix:
os: ["windows-latest", "ubuntu-latest", "macos-latest"]
python-version: ["3.9", "3.11", "3.12"]
python-version: ["3.10", "3.11", "3.12"]
experimental: [false]
include:
- python-version: "3.12"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-sdist.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
shell: bash -l {0}
run: |
python -m pip install -q build
python -m build -s
python -m build
- name: Publish package to PyPI
if: github.event.action == 'published'
Expand Down
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ repos:
- types-setuptools
- types-PyYAML
- types-requests
args: ["--python-version", "3.9", "--ignore-missing-imports"]
args: ["--python-version", "3.10", "--ignore-missing-imports"]
- repo: https://github.com/pycqa/isort
rev: 5.13.2
hooks:
Expand Down
2 changes: 1 addition & 1 deletion doc/rtd_environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: readthedocs
channels:
- conda-forge
dependencies:
- python=3.10
- python=3.11
- pip
- platformdirs
- dask
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ dependencies = [
"zarr",
]
readme = "README.rst"
requires-python = ">=3.9"
requires-python = ">=3.10"
license = { text = "GPLv3" }
classifiers = [
"Development Status :: 5 - Production/Stable",
Expand Down

0 comments on commit b3394c7

Please sign in to comment.