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
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,9 @@ authors.py
*.DS_Store
# ignore files from tests
.hypothesis/
# ignore results from asv
# ignore folders from asv
benchmarks/env
benchmarks/html
benchmarks/results

# duecredit
Expand Down
9 changes: 4 additions & 5 deletions benchmarks/asv.conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,10 @@

// The Pythons you'd like to test against. If not provided, defaults
// to the current version of Python used to run `asv`.
"pythons": ["3.10"],
"pythons": ["3.11", "3.14"],
"build_command": [
"python -m build --wheel -o {build_cache_dir} {build_dir}"
],
// The matrix of dependencies to test. Each key is the name of a
// package (in PyPI) and the values are version numbers. An empty
// list indicates to just test against the default (latest)
Expand All @@ -30,10 +33,6 @@
"matrix": {
"Cython": [],
"numpy": [],
"scipy": [],
"six": [],
"pytest": [],
"mock": [],
"MDAnalysisTests": [],
},
// The directory (relative to the current directory) that benchmarks are
Expand Down
Loading