Skip to content

Commit

Permalink
ci: do not install in editable mode
Browse files Browse the repository at this point in the history
  • Loading branch information
paulmueller committed Nov 16, 2023
1 parent 0d39ed1 commit 6e7e19e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
python -m pip install coverage flake8 pytest pytest-qt
- name: Install package
run: |
pip install -e .
pip install .
- name: List installed packages
run: |
pip freeze
Expand Down
5 changes: 1 addition & 4 deletions .github/workflows/deploy_github.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,11 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install setuptools wheel twine
pip install -e .
pip install .
- name: Build macOS app
if: runner.os == 'macOS'
working-directory: ./build-recipes
run: |
# Uninstall rpy2, because it does not work on frozen macOS:
# https://github.com/GuckLab/MPL-Data-Cast/issues/73
pip uninstall -y rpy2
bash ./macos_build_app.sh MPLDataCast ${{ env.RELEASE_VERSION }}
- name: Build windows executable
if: runner.os == 'windows'
Expand Down

0 comments on commit 6e7e19e

Please sign in to comment.