We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d2608f3 commit 0017b61Copy full SHA for 0017b61
.github/workflows/test_benchmarks.yml
@@ -89,14 +89,13 @@ jobs:
89
then
90
user=${BENCHOPT_BRANCH%@*}
91
branch=${BENCHOPT_BRANCH##*@}
92
- version="@git+https://github.com/$user/benchopt@$branch"
+ pip install -U git+https://github.com/$user/benchopt@$branch
93
elif [[ "$BENCHOPT_VERSION" == "latest" ]]
94
95
- version=""
+ pip install -U benchopt
96
else
97
- version=$BENCHOPT_VERSION
+ pip install -U benchopt==$BENCHOPT_VERSION
98
fi
99
- pip install -U benchopt[test]$version
100
- name: Check if benchopt is compatible with this benchmark
101
id: check_min_version
102
run: |
0 commit comments