Skip to content

Commit

Permalink
Drop python3.7 support.
Browse files Browse the repository at this point in the history
  • Loading branch information
antarcticrainforest committed Aug 28, 2024
1 parent 93caf51 commit 19b0234
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
conda create -n test -c conda-forge -y python=3.12 pip cartopy make
- name: Install dependencies
run: |
conda run -n test python3 -m pip install -U -e .[tests]
conda run -n test python3 -m pip install -U -e .[dev]
- name: Linting the code
run: |
conda run -n test tox -e lint
Expand All @@ -46,7 +46,7 @@ jobs:
strategy:
max-parallel: 5
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
fail-fast: false
steps:
- name: Checkout
Expand All @@ -62,7 +62,7 @@ jobs:
conda create -n test -c conda-forge -y python=${{matrix.python-version}} ffmpeg pip cartopy make hdf5 pandoc
- name: Install dependencies
run: |
conda run -n test python3 -m pip install -U -e .[tests,docs]
conda run -n test python3 -m pip install -U -e .[dev]
- name: Setup jupyter kernel
run: |
conda run -n test python3 -m ipykernel install --name tintx --display-name "tintX kernel" --env DATA_FILES ${PWD}/docs/source/_static/data --user
Expand Down
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ authors = [{name = "Martin Bergemann", email = "[email protected]"}]
readme = "README.md"
license = {file = "LICENSE"}
dynamic = ["version"]
requires-python = ">=3.7"
requires-python = ">=3.8"
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
Expand All @@ -18,7 +18,6 @@ classifiers = [
"License :: OSI Approved :: BSD License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
Expand Down

0 comments on commit 19b0234

Please sign in to comment.