We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2bc72b0 commit 3d36816Copy full SHA for 3d36816
.github/workflows/ci.yaml
@@ -107,8 +107,9 @@ jobs:
107
- name: Get version windows
108
if: matrix.os == 'windows-latest'
109
run: |
110
+ uv add 'numpy==2.0.2'
111
chcp 65001 # use utf-8
- 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()'
113
echo "Showing version.txt"
114
type version.txt
115
type version.txt >> $env:GITHUB_ENV
0 commit comments