Skip to content

Commit

Permalink
Updated requirements.txt to point to the specific commit of globus_co…
Browse files Browse the repository at this point in the history
…mpute_sdk that removed websockets as a dependency globus/globus-compute@d173134
  • Loading branch information
davramov committed Aug 14, 2024
1 parent f3d7e6f commit 683965b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 13 deletions.
13 changes: 2 additions & 11 deletions .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,17 +22,8 @@ jobs:
python -m pip install --upgrade pip
pip install flake8 pytest
pip install .
if [ -f constraints.txt ]; then
pip install . -c constraints.txt;
else
pip install .;
fi
if [ -f requirements.txt ]; then
pip install -r requirements.txt -c constraints.txt;
fi
if [ -f requirements-dev.txt ]; then
pip install -r requirements-dev.txt -c constraints.txt;
fi
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
if [ -f requirements-dev.txt ]; then pip install -r requirements-dev.txt; fi
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
Expand Down
1 change: 0 additions & 1 deletion constraints.txt

This file was deleted.

2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ pyscicat @ git+https://github.com/dylanmcreynolds/pyscicat@fix_auth
pyyaml
authlib
sfapi_client
globus_compute_sdk
git+https://github.com/globus/globus-compute.git@d1731340074be56861ec91d732bdff44f8e2b46e#egg=globus-compute

0 comments on commit 683965b

Please sign in to comment.