Skip to content

Commit

Permalink
drop python 3.8 add python 3.13 (#241)
Browse files Browse the repository at this point in the history
  • Loading branch information
MatthewFlamm authored Nov 6, 2024
1 parent 2f354cd commit 33cddca
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,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"]

steps:
- uses: actions/checkout@v4
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"
[project]
dynamic = ["version"]
name = "pynws"
requires-python = ">=3.8"
requires-python = ">=3.9"
dependencies = [
"aiohttp",
"metar",
Expand All @@ -17,11 +17,11 @@ keywords = ["nws", "weather"]
license = {text = "MIT License"}
classifiers = [
"License :: OSI Approved :: MIT License",
"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",
]
authors = [
{name = "Matthew Flamm", email = "[email protected]"}
Expand Down

0 comments on commit 33cddca

Please sign in to comment.