Skip to content

Commit 40c1931

Browse files
authored
Merge pull request #327 from CitrineInformatics/pne-6628/fix-pypi-deploy
PNE-6628/fix-lolopy-deploy
2 parents b1f7cca + 617bd4f commit 40c1931

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

.github/workflows/deployPyPi.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,18 @@ jobs:
1212
steps:
1313
- name: Check out repository code
1414
uses: actions/checkout@v4
15+
- name: Set up Python
16+
uses: actions/setup-python@v2
17+
with:
18+
python-version: '3.12'
19+
- name: Install build dependencies
20+
run: |
21+
python -m pip install --upgrade pip
22+
pip install setuptools wheel
1523
- name: Build
16-
run: python setup.py sdist bdist_wheel
24+
run: |
25+
cd python
26+
python setup.py sdist bdist_wheel
1727
- name: Publish
1828
uses: pypa/gh-action-pypi-publish@release/v1
1929
with:

0 commit comments

Comments
 (0)