Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ jobs:
- "3.12"
- "3.13"
- "pypy-3.10"
# - "pypy-3.11"
- "pypy-3.11"
- "graalpy-24"
include:
- source: sdist
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
# no graalpy classifier yet (pypa/trove-classifiers#188)
# "Programming Language :: Python :: Implementation :: GraalPy",
"Programming Language :: Python :: Implementation :: GraalPy",
]

[project.urls]
Expand Down
15 changes: 7 additions & 8 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
[tox]
min_version = 4.0
env_list = py3{9,10,11,12}
pypy310
env_list = py3{9,10,11,12,13}
pypy{310,311}
graalpy
flake8, black, typecheck
labels =
test = py3{9,10,11,12},pypy310,graalpy
cpy = py3{9,10,11,12}
pypy = pypy3.10
graal = graalpy-24
test = py3{9,10,11,12,13},pypy{310,311},graalpy
cpy = py3{9,10,11,12,13}
pypy = pypy{310,311}
check = flake8, black, typecheck

[testenv]
Expand All @@ -21,16 +20,16 @@ wheel_build_env = .pkg
deps =
pytest
pyyaml
google-re2
ua-parser-rs
./ua-parser-builtins
commands =
pytest -Werror --doctest-glob="*.rst" {posargs}

[testenv:{pypy310,graalpy}]
[testenv:py3{9,10,11,12}]
deps =
pytest
pyyaml
google-re2
ua-parser-rs
./ua-parser-builtins

Expand Down
3 changes: 2 additions & 1 deletion ua-parser-builtins/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,10 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
# "Programming Language :: Python :: Implementation :: GraalPy",
"Programming Language :: Python :: Implementation :: GraalPy",
]

[tool.hatch.build.hooks.custom]
Expand Down
Loading