-
-
Notifications
You must be signed in to change notification settings - Fork 240
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CI: Test if we can build puppetboard
In our normal test pipeline, we didn't verify if we can properly build the package. because of that, the last 6.0.0 release failed: ``` Run python setup.py build sdist bdist_wheel Traceback (most recent call last): File "/home/runner/work/puppetboard/puppetboard/setup.py", line 3, in <module> from setuptools.command.test import test as TestCommand ModuleNotFoundError: No module named 'setuptools' ```
- Loading branch information
1 parent
2f21617
commit ea16637
Showing
2 changed files
with
21 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 |
---|---|---|
|
@@ -17,11 +17,9 @@ jobs: | |
with: | ||
python-version: 3.12 | ||
- name: Install dependencies | ||
run: | | ||
pip install wheel | ||
run: pip install wheel | ||
- name: Build | ||
run: | | ||
python setup.py build sdist bdist_wheel | ||
run: python setup.py build sdist bdist_wheel | ||
- name: Publish distribution 📦 to PyPI | ||
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