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