Try running CI on 3.10 and drop eager install

no_git_prot_w_pip
Tyler Goodlet 2022-04-12 17:12:07 -04:00
parent 289a69bf41
commit 3762466a58
1 changed files with 4 additions and 4 deletions

View File

@ -25,10 +25,10 @@ jobs:
- name: Setup python
uses: actions/setup-python@v2
with:
python-version: '3.9'
python-version: '3.10'
- name: Install dependencies
run: pip install -e . --upgrade-strategy eager -r requirements.txt
run: pip install -e . -r requirements.txt
- name: Run piker cli
run: piker
@ -44,7 +44,7 @@ jobs:
- name: Setup python
uses: actions/setup-python@v2
with:
python-version: '3.9'
python-version: '3.10'
- name: Install dependencies
run: pip install -U . -r requirements-test.txt -r requirements.txt --upgrade-strategy eager