Skip to content

Commit

Permalink
Python version support (#40)
Browse files Browse the repository at this point in the history
* Update setup.py to make requirements more clear

* Update dependencies and python version on pyproject.toml

* Remove comment

* Add CI tests for multiple python versions

* Update pyproject.toml

Co-authored-by: Matthew Feickert <[email protected]>

* Remove dependency restrictions by setting minimum version

* Fix conflict

* Fix ci

* Rollback downgrade at release.yaml

Co-authored-by: Matthew Feickert <[email protected]>
  • Loading branch information
itepifanio and matthewfeickert authored Aug 22, 2022
1 parent 22969b5 commit 6e01e8c
Show file tree
Hide file tree
Showing 5 changed files with 360 additions and 1,571 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,14 @@ jobs:
all_tests:
name: "Run NB Tests"
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10"]
steps:
- uses: actions/checkout@v3
- uses: actions/[email protected]
with:
python-version: '3.8'
python-version: ${{ matrix.python-version }}
- uses: abatilo/[email protected]
with:
poetry-version: 1.1.0
Expand All @@ -33,7 +36,6 @@ jobs:
- name: Run Notebooks tests
run: poetry run nbdev_test_nbs


release_whl:
needs: all_tests
if: github.event_name == 'release'
Expand Down
Loading

0 comments on commit 6e01e8c

Please sign in to comment.