Skip to content

Commit

Permalink
drop py39 and support py312
Browse files Browse the repository at this point in the history
  • Loading branch information
bjlittle committed Nov 20, 2023
1 parent 2f22fe8 commit e0f9e01
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 348 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
fail-fast: false
matrix:
os: ["ubuntu-latest"]
version: ["py39", "py310", "py311"]
version: ["py310", "py311", "py312"]
session: ["tests"]
include:
- os: "ubuntu-latest"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ jobs:
strategy:
fail-fast: false
matrix:
version: ["py39", "py310", "py311"]
version: ["py310", "py311", "py312"]
session: ["env"]

steps:
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ classifiers = [
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Atmospheric Science",
]
description = "Cartographic rendering and mesh analytics powered by PyVista"
Expand All @@ -47,7 +47,7 @@ keywords = [
]
license.file = "LICENSE"
name = "geovista"
requires-python = ">=3.9"
requires-python = ">=3.10"


[project.urls]
Expand All @@ -62,7 +62,7 @@ geovista = "geovista.cli:main"

[tool.black]
line-length = 88
target-version = ["py39", "py310", "py311"]
target-version = ["py310", "py311", "py312"]
include = '\.pyi?$'


Expand Down
Loading

0 comments on commit e0f9e01

Please sign in to comment.