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

Testing dependency versions #439

Merged
merged 11 commits into from
Mar 20, 2024
4 changes: 3 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:

jobs:
tests:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
strategy:
matrix:
python-version: [3.6, 3.7, 3.8, 3.9]
Expand All @@ -26,6 +26,8 @@ jobs:

- name: Set up Poetry
uses: snok/install-poetry@v1
with:
version: 1.1.10

- name: Install dependencies
run: |
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -52,5 +52,5 @@ pytest = ">=3.7.1"
# jupyter_kernel_test==0.3.0

[build-system]
requires = ["poetry-core>=1.0.0"]
requires = ["poetry-core>=1.1.10"]
build-backend = "poetry.core.masonry.api"
Loading