Skip to content

Commit

Permalink
Add classifier Python 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
elliotwutingfeng committed Nov 11, 2023
1 parent a6a98fd commit 9416187
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 8 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,6 @@ jobs:
{python-version: "3.11", toxenv: "py311"},
{python-version: "3.12", toxenv: "py312"},
{python-version: "pypy3.8", toxenv: "pypy38"},
{python-version: "pypy3.9", toxenv: "pypy39"},
{python-version: "pypy3.10", toxenv: "pypy310"},
]
include:
- os: ubuntu-latest
Expand Down
11 changes: 6 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,16 +27,17 @@ classifiers = [
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
requires-python = ">=3.8"
dynamic = ["version"]
readme = "README.md"

dependencies = [
"idna",
"requests>=2.31.0",
"requests-file>=1.5",
"filelock>=3.13.1",
"requests>=2.1.0",
"requests-file>=1.4",
"filelock>=3.0.8",
]

[project.optional-dependencies]
Expand All @@ -61,8 +62,8 @@ tldextract = "tldextract.cli:main"

[build-system]
requires = [
"setuptools>=68.2",
"setuptools_scm[toml]>=8.0",
"setuptools>=61.2",
"setuptools_scm[toml]>=6.2",
]
build-backend = "setuptools.build_meta"

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{38,39,310,311,312,py38,py39,py310},codestyle,lint,typecheck
envlist = py{38,39,310,311,312,py38},codestyle,lint,typecheck

[testenv]
commands = pytest {posargs}
Expand Down

0 comments on commit 9416187

Please sign in to comment.