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: 1 addition & 1 deletion .github/workflows/run-benchmarks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v6
with:
python-version: '3.10'
python-version: '3.14'

- name: Install dependencies
run: |
Expand Down
6 changes: 1 addition & 5 deletions asv.conf.actions.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@

// This list needs to be updated after each release of sympy. The branch to
// be checked should always be the previous release.
"branches": ["1.12", "master", "HEAD"], // for git
"branches": ["1.14", "master", "HEAD"], // for git
Copy link

Copilot AI Feb 23, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Verify that SymPy 1.14 has been released. The comment on line 30-31 indicates this should be the previous release version. If SymPy 1.14 hasn't been released yet, this will cause the benchmarks to fail when trying to check out this branch from the SymPy repository. You can verify the existence of this branch/tag at https://github.com/sympy/sympy.

Suggested change
"branches": ["1.14", "master", "HEAD"], // for git
"branches": ["1.13", "master", "HEAD"], // for git

Copilot uses AI. Check for mistakes.
// "branches": ["tip"], // for mercurial

// The DVCS being used. If not set, it will be automatically
Expand All @@ -48,10 +48,6 @@
// the base URL to show a commit for the project.
"show_commit_url": "http://github.com/sympy/sympy/commit/",

// 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"],

// 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 Down