Skip to content

Commit 60e1c0f

Browse files
committedOct 17, 2024
Fix perf scripts
- enable graal on tox (24.1 with master's virtualenv plugin seems to work) - make tracemalloc optional in CLI script (doesn't work in pypy) - add regex to CLI script - comment graalpy trove classifier (doesn't exist yet) fixes #206
1 parent 46778e7 commit 60e1c0f

File tree

3 files changed

+32
-7
lines changed

3 files changed

+32
-7
lines changed
 

‎pyproject.toml

+8-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,8 @@ classifiers = [
4040
"Programming Language :: Python :: 3.12",
4141
"Programming Language :: Python :: Implementation :: CPython",
4242
"Programming Language :: Python :: Implementation :: PyPy",
43-
"Programming Language :: Python :: Implementation :: GraalPy",
43+
# no graalpy classifier yet (pypa/trove-classifiers#188)
44+
# "Programming Language :: Python :: Implementation :: GraalPy",
4445
]
4546

4647
[project.optional-dependencies]
@@ -54,6 +55,12 @@ where = ["src"]
5455
[tool.setuptools.package-data]
5556
"ua_parser" = ["py.typed"]
5657

58+
[tool.ruff]
59+
exclude = [
60+
"src/ua_parser/_lazy.py",
61+
"src/ua_parser/_matchers.py",
62+
]
63+
5764
[tool.ruff.lint]
5865
select = ["F", "E", "W", "I", "RET", "RUF", "PT"]
5966
ignore = [

‎src/ua_parser/__main__.py

+21-3
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
import sys
1212
import threading
1313
import time
14-
import tracemalloc
14+
import types
1515
from typing import (
1616
Any,
1717
Callable,
@@ -38,8 +38,15 @@
3838
)
3939
from .caching import Cache, Local
4040
from .loaders import load_builtins, load_yaml
41-
from .re2 import Resolver as Re2Resolver
42-
from .regex import Resolver as RegexResolver
41+
42+
try:
43+
from .re2 import Resolver as Re2Resolver
44+
except ImportError:
45+
pass
46+
try:
47+
from .regex import Resolver as RegexResolver
48+
except ImportError:
49+
pass
4350
from .user_agent_parser import Parse
4451

4552
CACHEABLE = {
@@ -60,6 +67,17 @@
6067
]
6168
)
6269

70+
try:
71+
import tracemalloc
72+
except ImportError:
73+
snapshot = types.SimpleNamespace(
74+
compare_to=lambda _1, _2: [],
75+
)
76+
tracemalloc = types.SimpleNamespace( # type: ignore
77+
start=lambda: None,
78+
take_snapshot=lambda: snapshot,
79+
)
80+
6381

6482
def get_rules(parsers: List[str], regexes: Optional[io.IOBase]) -> Matchers:
6583
if regexes:

‎tox.ini

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22
min_version = 4.0
33
env_list = py3{9,10,11,12}
44
pypy3.10
5-
#graalpy-24
5+
graalpy-24
66
flake8, black, typecheck
77
labels =
8-
test = py3{9,10,11,12},pypy3.10#,graalpy-24
8+
test = py3{9,10,11,12},pypy3.10,graalpy-24
99
cpy = py3{9,10,11,12}
1010
pypy = pypy3.10
11-
#graal = graalpy-24
11+
graal = graalpy-24
1212
check = flake8, black, typecheck
1313

1414
[testenv]

0 commit comments

Comments
 (0)