Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Python version support #40

Merged
merged 10 commits into from
Aug 22, 2022
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 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/setup-python@v3
- uses: actions/setup-python@v4
itepifanio marked this conversation as resolved.
Show resolved Hide resolved
with:
python-version: '3.8'
python-version: ${{ matrix.python-version }}
- uses: abatilo/[email protected]
itepifanio marked this conversation as resolved.
Show resolved Hide resolved
with:
poetry-version: 1.1.0
Expand All @@ -33,15 +36,14 @@ jobs:
- name: Run Notebooks tests
run: poetry run nbdev_test_nbs


release_whl:
needs: all_tests
if: github.event_name == 'release'
name: "Upload to pypi"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
- uses: actions/setup-python@v4
- uses: abatilo/[email protected]
with:
poetry-version: 1.1.0
Expand Down
Loading