Skip to content

Commit 03668b8

Browse files
authored
Fix publish to pypi action (#1127)
In #1124, I accidentally added a line doing a `pip install .` package install to the publish flow. This is silly, we shouldn't need to be installing the package before building the package for pypi, and it appears to be causing failures on the action: https://github.com/keras-team/keras-nlp/actions/runs/5513665846/jobs/10052068366 These were not caught because we don't run the pypi action on each PR.
1 parent d7c23e8 commit 03668b8

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

.github/workflows/publish-to-pypi.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ jobs:
1010
- name: Install dependencies
1111
run: |
1212
pip install -r requirements.txt --progress-bar off
13-
pip install --no-deps -e "." --progress-bar off
1413
- name: Build a binary wheel and a source tarball
1514
run: >-
1615
python pip_build.py

0 commit comments

Comments
 (0)