Skip to content

Commit

Permalink
Fix settings for Poetry
Browse files Browse the repository at this point in the history
Signed-off-by: Dan Yeaw <dan@yeaw.me>
  • Loading branch information
danyeaw committed Nov 27, 2019
1 parent 90814df commit d0a5bed
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Expand Up @@ -47,7 +47,7 @@ jobs:
with:
version: 1.0.0b3
- name: Turn off Virtualenvs
run: poetry config settings.virtualenvs.create false
run: poetry config virtualenvs.create false
- name: Install Python Dependencies
run: poetry install
- name: Test with Pytest
Expand Down Expand Up @@ -103,7 +103,7 @@ jobs:
with:
version: 1.0.0b3
- name: Turn off Virtualenvs
run: poetry config settings.virtualenvs.create false
run: poetry config virtualenvs.create false
- name: Install Python Dependencies
run: |
poetry install
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Expand Up @@ -52,7 +52,7 @@ jobs:
with:
version: 1.0.0b3
- name: Turn off Virtualenvs
run: poetry config settings.virtualenvs.create false
run: poetry config virtualenvs.create false
- name: Install Python Dependencies
run: poetry install
- name: Build Wheel and sdist
Expand Down
2 changes: 1 addition & 1 deletion flatpak/org.gaphor.Gaphor.yaml
Expand Up @@ -18,7 +18,7 @@ modules:
- name: gaphor
buildsystem: simple
build-commands:
- 'poetry config settings.virtualenvs.create false && poetry build'
- 'poetry config virtualenvs.create false && poetry build'
- 'pip3 install --no-index --prefix=${FLATPAK_DEST} ./dist/gaphor*.whl'
sources:
- type: git
Expand Down

0 comments on commit d0a5bed

Please sign in to comment.