-
-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: install poetry on build actions
- Loading branch information
1 parent
6fcd187
commit f7c3956
Showing
2 changed files
with
8 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,11 +15,11 @@ jobs: | |
with: | ||
python-version: "3.10" | ||
|
||
- name: Setup pip | ||
run: python -m pip install --upgrade pip | ||
- name: Install Poetry | ||
uses: abatilo/[email protected] | ||
|
||
- name: Build source distribution | ||
run: python setup.py sdist | ||
run: poetry build --format sdist | ||
|
||
- uses: actions/upload-artifact@v4 | ||
with: | ||
|
@@ -37,6 +37,9 @@ jobs: | |
with: | ||
python-version: "3.10" | ||
|
||
- name: Install Poetry | ||
uses: abatilo/[email protected] | ||
|
||
- name: Build wheels | ||
uses: pypa/[email protected] | ||
with: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,7 +16,7 @@ jobs: | |
with: | ||
python-version: ${{ matrix.python-version }} | ||
|
||
- name: Python Poetry Action | ||
- name: Install Poetry | ||
uses: abatilo/[email protected] | ||
|
||
- uses: extractions/setup-just@v2 | ||
|