diff --git a/.github/workflows/python-app.yml b/.github/workflows/python-app.yml index c69b158..f42aacd 100644 --- a/.github/workflows/python-app.yml +++ b/.github/workflows/python-app.yml @@ -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 diff --git a/constraints.txt b/constraints.txt deleted file mode 100644 index 6259e61..0000000 --- a/constraints.txt +++ /dev/null @@ -1 +0,0 @@ -websockets==12.0 \ No newline at end of file diff --git a/requirements.txt b/requirements.txt index 8647be1..75ced54 100644 --- a/requirements.txt +++ b/requirements.txt @@ -9,4 +9,4 @@ pyscicat @ git+https://github.com/dylanmcreynolds/pyscicat@fix_auth pyyaml authlib sfapi_client -globus_compute_sdk \ No newline at end of file +git+https://github.com/globus/globus-compute.git@d1731340074be56861ec91d732bdff44f8e2b46e#egg=globus-compute \ No newline at end of file