Skip to content
Open
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: 2 additions & 0 deletions .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ jobs:
- '3.10'
- '3.11'
- '3.12'
- '3.13'
- '3.14'
- pypy-3.9
- pypy-3.10
steps:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ jobs:
- '3.11'
- '3.12'
- '3.13'
- '3.14'
- pypy-3.9
- pypy-3.10
toxenv:
Expand Down
13 changes: 7 additions & 6 deletions asv.conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,13 @@
// Customizable commands for building, installing, and
// uninstalling the project. See asv.conf.json documentation.
//
// "install_command": ["in-dir={env_dir} python -mpip install {wheel_file}"],
// "uninstall_command": ["return-code=any python -mpip uninstall -y {project}"],
// "build_command": [
// "python setup.py build",
// "PIP_NO_BUILD_ISOLATION=false python -mpip wheel --no-deps --no-index -w {build_cache_dir} {build_dir}"
// ],
// For asv 0.6.3+ compatibility, explicitly specify build commands
// that use the 'build' backend and ensure wheel file is created
"build_command": [
"python -m build --wheel -o {build_cache_dir} {build_dir}"
],
"install_command": ["in-dir={env_dir} python -mpip install {wheel_file}"],
"uninstall_command": ["return-code=any python -mpip uninstall -y {project}"],

// List of branches to benchmark. If not provided, defaults to "master"
// (for git) or "default" (for mercurial).
Expand Down
3 changes: 2 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ classifiers =
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Programming Language :: Python :: 3.13
Programming Language :: Python :: 3.14
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
License :: OSI Approved :: MIT License
Expand All @@ -46,7 +47,7 @@ install_requires =

[options.extras_require]
benchmarks =
asv[virtualenv] ~= 0.6.0, < 0.6.2
asv[virtualenv] >= 0.6.3
test =
pytest
pytest-cov
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 = lint,py37,py38,py39,py310,py311,py312,py313,pypy3
envlist = lint,py39,py310,py311,py312,py313,py314,pypy3
skip_missing_interpreters = True
isolated_build = True
minversion = 3.3.0
Expand Down
Loading