Fix instructions for pip installing a tagged release (tag name was wr… #25
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: FUDGE pip install | |
| on: [push] | |
| jobs: | |
| build: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest, macos-latest, windows-latest] | |
| python-version: ["3.8", "3.12", "3.13"] | |
| steps: | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Display environment | |
| run: python -c "import sys, platform; print(platform.system()); print(sys.version)" | |
| - name: Install dependencies | |
| run: python -m pip install --upgrade pip setuptools wheel numpy h5py | |
| - name: Install FUDGE | |
| run: | | |
| if [ "$RUNNER_OS" == "Windows" ]; then | |
| export CC=gcc | |
| fi | |
| python -m pip install git+https://github.com/LLNL/fudge.git | |
| shell: bash | |