Skip to content

Commit d5fdcaa

Browse files
authored
Upgrade PPT version (#590)
1 parent e069b39 commit d5fdcaa

File tree

5 files changed

+8
-14
lines changed

5 files changed

+8
-14
lines changed

.copier-answers.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Changes here will be overwritten by Copier
2-
_commit: v2.1.0
2+
_commit: v2.1.1
33
_src_path: gh:lincc-frameworks/python-project-template
44
author_email: [email protected]
55
author_name: LINCC Frameworks

.github/workflows/asv-main.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99

1010
env:
1111
PYTHON_VERSION: "3.11"
12-
ASV_VERSION: "0.6.4"
12+
ASV_VERSION: "0.6.5"
1313
WORKING_DIR: ${{github.workspace}}/benchmarks
1414

1515
concurrency:
@@ -34,9 +34,7 @@ jobs:
3434
with:
3535
fetch-depth: 0
3636
- name: Install dependencies
37-
run: |
38-
pip install asv==${{env.ASV_VERSION}}
39-
pip install virtualenv==20.30 # Temporary fix to airspeed-velocity/asv#1484
37+
run: pip install asv[virtualenv]==${{env.ASV_VERSION}}
4038
- name: Configure git
4139
run: |
4240
git config user.name "github-actions[bot]"

.github/workflows/asv-nightly.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010

1111
env:
1212
PYTHON_VERSION: "3.11"
13-
ASV_VERSION: "0.6.4"
13+
ASV_VERSION: "0.6.5"
1414
WORKING_DIR: ${{github.workspace}}/benchmarks
1515
NIGHTLY_HASH_FILE: nightly-hash
1616

@@ -30,9 +30,7 @@ jobs:
3030
with:
3131
fetch-depth: 0
3232
- name: Install dependencies
33-
run: |
34-
pip install asv==${{env.ASV_VERSION}}
35-
pip install virtualenv==20.30 # Temporary fix to airspeed-velocity/asv#1484
33+
run: pip install asv[virtualenv]==${{env.ASV_VERSION}}
3634
- name: Configure git
3735
run: |
3836
git config user.name "github-actions[bot]"

.github/workflows/asv-pr.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ concurrency:
1616

1717
env:
1818
PYTHON_VERSION: "3.11"
19-
ASV_VERSION: "0.6.4"
19+
ASV_VERSION: "0.6.5"
2020
WORKING_DIR: ${{github.workspace}}/benchmarks
2121
ARTIFACTS_DIR: ${{github.workspace}}/artifacts
2222

@@ -39,9 +39,7 @@ jobs:
3939
run: |
4040
echo "Workflow Run ID: ${{github.run_id}}"
4141
- name: Install dependencies
42-
run: |
43-
pip install asv==${{env.ASV_VERSION}} lf-asv-formatter
44-
pip install virtualenv==20.30 # Temporary fix to airspeed-velocity/asv#1484
42+
run: pip install asv[virtualenv]==${{env.ASV_VERSION}} lf-asv-formatter
4543
- name: Make artifacts directory
4644
run: mkdir -p ${{env.ARTIFACTS_DIR}}
4745
- name: Save pull request number

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ dependencies = [
4545
# On a mac, install optional dependencies with `pip install '.[dev]'` (include the single quotes)
4646
[project.optional-dependencies]
4747
dev = [
48-
"asv==0.6.5", # Used to compute performance benchmarks
48+
"asv[virtualenv]==0.6.5", # Used to compute performance benchmarks
4949
"black", # Used for static linting of files
5050
"jupyter", # Clears output from Jupyter notebooks
5151
"pre-commit", # Used to run checks before finalizing a git commit

0 commit comments

Comments
 (0)