Skip to content

Commit

Permalink
Fix missing open mode
Browse files Browse the repository at this point in the history
  • Loading branch information
znicholls committed Aug 21, 2024
1 parent ef4915b commit 2cd5fb7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/install-pypi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
- name: Get version windows
if: matrix.os == 'windows-latest'
run: |
python -c 'import openscm_zenodo; f = open("version.txt"); f.write(f"v{openscm_zenodo.__version__}"); f.close()'
python -c 'import openscm_zenodo; f = open("version.txt", "w"); f.write(f"v{openscm_zenodo.__version__}"); f.close()'
type version.txt
set /p INSTALLED_VERSION=<version.txt
echo %INSTALLED_VERSION%
Expand Down

0 comments on commit 2cd5fb7

Please sign in to comment.