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
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ env:
{%- import 'python-versions.jinja' as py%}
PYTHON_VERSION: "{{ py.pref(python_versions) }}"
{%- raw %}
ASV_VERSION: "0.6.4"
ASV_VERSION: "0.6.5"
WORKING_DIR: ${{github.workspace}}/benchmarks

concurrency:
Expand All @@ -38,9 +38,7 @@ jobs:
with:
fetch-depth: 0
- name: Install dependencies
run: |
pip install asv==${{env.ASV_VERSION}}
pip install virtualenv==20.30 # Temporary fix to airspeed-velocity/asv#1484
run: pip install asv[virtualenv]==${{env.ASV_VERSION}}
- name: Configure git
run: |
git config user.name "github-actions[bot]"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ env:
{%- import 'python-versions.jinja' as py%}
PYTHON_VERSION: "{{ py.pref(python_versions) }}"
{%- raw %}
ASV_VERSION: "0.6.4"
ASV_VERSION: "0.6.5"
WORKING_DIR: ${{github.workspace}}/benchmarks
NIGHTLY_HASH_FILE: nightly-hash

Expand All @@ -34,9 +34,7 @@ jobs:
with:
fetch-depth: 0
- name: Install dependencies
run: |
pip install asv==${{env.ASV_VERSION}}
pip install virtualenv==20.30 # Temporary fix to airspeed-velocity/asv#1484
run: pip install asv[virtualenv]==${{env.ASV_VERSION}}
- name: Configure git
run: |
git config user.name "github-actions[bot]"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ env:
{%- import 'python-versions.jinja' as py%}
PYTHON_VERSION: "{{ py.pref(python_versions) }}"
{%- raw %}
ASV_VERSION: "0.6.4"
ASV_VERSION: "0.6.5"
WORKING_DIR: ${{github.workspace}}/benchmarks
ARTIFACTS_DIR: ${{github.workspace}}/artifacts

Expand All @@ -43,9 +43,7 @@ jobs:
run: |
echo "Workflow Run ID: ${{github.run_id}}"
- name: Install dependencies
run: |
pip install asv==${{env.ASV_VERSION}} lf-asv-formatter
pip install virtualenv==20.30 # Temporary fix to airspeed-velocity/asv#1484
run: pip install asv[virtualenv]==${{env.ASV_VERSION}} lf-asv-formatter
- name: Make artifacts directory
run: mkdir -p ${{env.ARTIFACTS_DIR}}
- name: Save pull request number
Expand Down
3 changes: 1 addition & 2 deletions python-project-template/pyproject.toml.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,7 @@ dependencies = [
[project.optional-dependencies]
dev = [
{%- if include_benchmarks %}
"asv==0.6.4", # Used to compute performance benchmarks
"virtualenv==20.30", # Temporary fix to airspeed-velocity/asv#1484
"asv[virtualenv]==0.6.5", # Used to compute performance benchmarks
{%- endif %}
{%- if 'black' in enforce_style %}
"black", # Used for static linting of files
Expand Down