-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated libraries to resolve conflict
- Loading branch information
1 parent
4c69b09
commit dfcdc6a
Showing
2 changed files
with
11 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,27 +13,18 @@ jobs: | |
strategy: | ||
fail-fast: false | ||
matrix: | ||
python-version: [3.7, 3.8, 3.9, "3.10"] | ||
python-version: [3.7] | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Set up pyenv | ||
uses: tiangolo/pyenv-action@v2 | ||
with: | ||
python-version: "3.9" # specify your desired Python version here | ||
|
||
- uses: actions/[email protected] | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
|
||
- name: Upgrade pip, setuptools, and wheel | ||
run: | | ||
pip install --upgrade pip setuptools wheel | ||
- run: pip install -U setuptools | ||
|
||
- name: Install dependencies | ||
run: | | ||
pip install -r requirements.txt | ||
- run: pip install -r requirements.txt | ||
|
||
- run: pip install -e .[dev] | ||
|
||
|