Skip to content

Commit

Permalink
Update dependency-installation.yml
Browse files Browse the repository at this point in the history
remove git links
  • Loading branch information
sahiljhawar authored Jul 31, 2024
1 parent 218fbd4 commit c61097a
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/dependency-installation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,38 +48,38 @@ jobs:
- name: Install NMMA (base)
run: |
python -m pip install 'nmma @ git+https://github.com/sahiljhawar/nmma.git@dependencies'
python -m pip install nmma
- name: Verify base NMMA installation
run: |
python -c "import nmma; print(f'NMMA version: {nmma.__version__}')"
- name: Install and verify NMMA [grb]
run: |
python -m pip install 'nmma[grb] @ git+https://github.com/sahiljhawar/nmma.git@dependencies'
python -m pip install 'nmma[grb]'
python -c "import nmma, afterglowpy; print(f'Successfully imported {nmma.__name__}, {afterglowpy.__name__}')"
- name: Install and verify NMMA [production]
run: |
python -m pip install 'nmma[production] @ git+https://github.com/sahiljhawar/nmma.git@dependencies'
python -m pip install 'nmma[production]'
python -c "import nmma, parallel_bilby, nestcheck, mpi4py; print(f'Successfully imported {nmma.__name__}, {parallel_bilby.__name__}, {nestcheck.__name__}, {mpi4py.__name__}')"
- name: Install and verify NMMA [neuralnet]
run: |
python -m pip install 'nmma[neuralnet] @ git+https://github.com/sahiljhawar/nmma.git@dependencies'
python -m pip install 'nmma[neuralnet]'
python -c "import nmma, torch, nflows, torchvision; print(f'Successfully imported {nmma.__name__}, {torch.__name__}, {nflows.__name__}, {torchvision.__name__}')"
- name: Install and verify NMMA [tf]
run: |
python -m pip install 'nmma[tf] @ git+https://github.com/sahiljhawar/nmma.git@dependencies'
python -m pip install 'nmma[tf]'
python -c "import nmma, tensorflow; print(f'Successfully imported {nmma.__name__}, {tensorflow.__name__}')"
- name: Install and verify NMMA [sklearn]
run: |
python -m pip install 'nmma[sklearn] @ git+https://github.com/sahiljhawar/nmma.git@dependencies'
python -m pip install 'nmma[sklearn]'
python -c "import nmma, sklearn; print(f'Successfully imported {nmma.__name__}, {sklearn.__name__}')"
- name: Install and verify NMMA [sampler]
run: |
python -m pip install 'nmma[sampler] @ git+https://github.com/sahiljhawar/nmma.git@dependencies'
python -m pip install 'nmma[sampler]'
python -c "import nmma, ultranest; print(f'Successfully imported {nmma.__name__}, {ultranest.__name__}')"

0 comments on commit c61097a

Please sign in to comment.