Skip to content

Commit

Permalink
fix: remove py39
Browse files Browse the repository at this point in the history
  • Loading branch information
felixscherz committed Jun 22, 2024
1 parent f3258db commit d360d57
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
python-version: ["3.9", "3.10", "3.11", "3.12"]
python-version: ["3.10", "3.11", "3.12"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
Expand Down
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,14 @@
name = "discover-plugins"
dynamic = ["version"]
description = "Discover installed plugins"
requires-python = ">=3.9"
requires-python = ">=3.10"
readme = "README.md"
authors = [
{ name = "Felix Scherz", email = "[email protected]" },
]
license = {file = "LICENSE"}
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py{39,310,311,312}
envlist = py{310,311,312}

[testenv]
deps =
Expand Down

0 comments on commit d360d57

Please sign in to comment.