Skip to content

Commit d5c95d3

Browse files
committed
chore: use pip install -e instead of pipenv
1 parent b852611 commit d5c95d3

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/release-to-pypi.yaml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1+
---
12
name: release-to-pypi
2-
on:
3+
"on":
34
push:
45
tags:
56
- '*'
@@ -15,7 +16,9 @@ jobs:
1516
- name: checkout
1617
run: git fetch --prune --unshallow
1718
- name: install environment
18-
run: pip install pipenv && pipenv sync -d
19+
run: |
20+
pip install build
21+
pip install -e .
1922
- name: build
2023
run: pipenv run make build
2124
- name: upload to pypi

0 commit comments

Comments
 (0)