Skip to content

Commit 4d187d2

Browse files
authored
Merge pull request #13 from drorata/feat/switch-to-poetry
Feat/switch to poetry
2 parents ffefc7e + 5dde9c3 commit 4d187d2

File tree

4 files changed

+556
-24
lines changed

4 files changed

+556
-24
lines changed

.github/workflows/deploy_pages.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
name: deploy website
2+
23
on:
34
push:
45
branches:
@@ -13,14 +14,14 @@ jobs:
1314
submodules: "true"
1415
- uses: actions/setup-python@v3
1516
with:
16-
python-version: "3.7"
17+
python-version: "3.8"
1718

18-
- name: Install pipenv
19-
uses: dschep/install-pipenv-action@v1
19+
- name: Install poetry
20+
run: pip install poetry==1.8.3
2021

2122
- name: Install dependencies
2223
run: |
23-
pipenv install
24+
poetry install --no-root
2425
2526
- name: Install Task
2627
uses: arduino/setup-task@v1
@@ -31,4 +32,4 @@ jobs:
3132
# PAT to enable the that happens in the task 'publish_https'
3233
GIT_PAT: ${{ secrets.MY_PAT }}
3334
run: |
34-
pipenv run task publish_https
35+
poetry run task publish_https

Pipfile

Lines changed: 0 additions & 19 deletions
This file was deleted.

0 commit comments

Comments
 (0)