Skip to content
This repository has been archived by the owner on Dec 16, 2022. It is now read-only.

Commit

Permalink
ensure setuptools and wheel installed first (#22)
Browse files Browse the repository at this point in the history
  • Loading branch information
epwalsh authored Apr 20, 2020
1 parent 2e1454f commit e58d657
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
python: ['3.6', '3.7']

steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v2

- name: Setup Python
uses: actions/setup-python@v1
Expand All @@ -34,6 +34,7 @@ jobs:
- name: Install requirements
run: |
pip install --upgrade pip setuptools wheel
pip install --upgrade git+https://github.com/allenai/allennlp.git@master
pip install --upgrade -r <(grep -Ev '^allennlp$' requirements.txt)
pip install --upgrade -r dev-requirements.txt
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ jobs:

- name: Install requirements
run: |
pip install --upgrade pip setuptools wheel
pip install -e .
pip install -r dev-requirements.txt
Expand Down

0 comments on commit e58d657

Please sign in to comment.