Skip to content

Commit 3d36816

Browse files
committed
Fix up check and try again
1 parent 2bc72b0 commit 3d36816

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/ci.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,8 +107,9 @@ jobs:
107107
- name: Get version windows
108108
if: matrix.os == 'windows-latest'
109109
run: |
110+
uv add 'numpy==2.0.2'
110111
chcp 65001 # use utf-8
111-
python -c 'import pandas_openscm; f = open("version.txt", "w"); f.write(f"INSTALLED_VERSION=v{pandas_openscm.__version__}"); f.close()'
112+
uv run python -c 'import pandas_openscm; f = open("version.txt", "w"); f.write(f"INSTALLED_VERSION=v{pandas_openscm.__version__}"); f.close()'
112113
echo "Showing version.txt"
113114
type version.txt
114115
type version.txt >> $env:GITHUB_ENV

0 commit comments

Comments
 (0)