Skip to content

Commit

Permalink
setup: fix build pipeline (remove editable install)
Browse files Browse the repository at this point in the history
  • Loading branch information
paulmueller committed Apr 23, 2024
1 parent e797783 commit 7e0ee93
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy_github.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install setuptools wheel twine
pip install -e .[GUI]
pip install .[GUI]
- name: Build macOS app
if: runner.os == 'macOS'
working-directory: ./build-recipes
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/deploy_pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,13 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools wheel twine
pip install -e .[GUI]
pipx install twine
pip install .[GUI]
- name: Build and publish
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_PWD }}
run: |
python setup.py sdist bdist_wheel
pipx run build --sdist
pipx run build --wheel
twine upload --skip-existing dist/*
2 changes: 2 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
0.14.1
- setup: fix build pipeline (remove editable install)
0.14.0
- feat: support new DCOR API for uploading data directly to S3
- feat: perform faster ETag verification instead of SHA256 summing
Expand Down

0 comments on commit 7e0ee93

Please sign in to comment.