Skip to content

Commit

Permalink
Install felis with pip using its package name instead of the Github URL
Browse files Browse the repository at this point in the history
Felis is now available on PyPI as "lsst-felis" so change to using this
instead of the Github URL.
  • Loading branch information
JeremyMcCormick committed Feb 2, 2024
1 parent 911851e commit fb12acb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
# required dependencies for the tap-schema build.
run: |
python -m pip install --upgrade pip
python -m pip install git+http://github.com/lsst/felis.git@main#egg=lsst-felis
pip install lsst-felis
working-directory: ./tap-schema

- name: Log in to Docker Hub
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/validate.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install git+http://github.com/lsst/felis.git@main#egg=lsst-felis
pip install lsst-felis
- name: Validate YAML files
run: felis validate ./yml/*.yaml

0 comments on commit fb12acb

Please sign in to comment.