Skip to content

Commit 7773b82

Browse files
committed
Updated dependencies and determining version in github release pipeline
1 parent a27d1fb commit 7773b82

File tree

3 files changed

+335
-17
lines changed

3 files changed

+335
-17
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -65,19 +65,11 @@ jobs:
6565
- name: Install uv
6666
run: pip install uv
6767

68-
- name: Create virtual environment
68+
- name: Get version of vantage6
6969
run: |
7070
uv venv --python 3.13
7171
. .venv/bin/activate
72-
echo PATH=$PATH >> $GITHUB_ENV
73-
74-
- name: Install dependencies
75-
run: |
7672
uv sync
77-
78-
- name: Find current version
79-
id: find-current-vantage6-version
80-
run: |
8173
version=$(python -c "from vantage6.common import __version__; print(__version__)")
8274
echo "v6_version=${version}" >> $GITHUB_OUTPUT
8375

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ description = "Basic data extraction and processing jobs"
99
readme = "README.md"
1010
requires-python = ">=3.13"
1111
dependencies = [
12-
"vantage6-algorithm-tools>=5.0.0a35",
1312
"pandas",
13+
"vantage6-algorithm-tools==5.0.0a36",
1414
]
1515
authors = [
1616
{ name = "Bart van Beusekom", email = "[email protected]" },

0 commit comments

Comments
 (0)