forked from camelot-dev/camelot
-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This fixes: Some possibly relevant errors from pip install: ERROR: Could not open requirements file: [Errno 2] No such file or directory: '.github/workflows/constraints.txt' Error installing poetry.
- Loading branch information
Showing
2 changed files
with
7 additions
and
13 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -59,13 +59,13 @@ jobs: | |
- name: Install Poetry | ||
run: | | ||
pipx install --pip-args=--constraint=.github/workflows/constraints.txt poetry | ||
pipx install poetry | ||
poetry --version | ||
- name: Install Nox | ||
run: | | ||
pipx install --pip-args=--constraint=.github/workflows/constraints.txt nox | ||
pipx inject --pip-args=--constraint=.github/workflows/constraints.txt nox nox-poetry | ||
pipx install nox | ||
pipx inject nox nox-poetry | ||
nox --version | ||
- name: Install ghostscript | ||
|
@@ -135,13 +135,13 @@ jobs: | |
- name: Install Poetry | ||
run: | | ||
pipx install --pip-args=--constraint=.github/workflows/constraints.txt poetry | ||
pipx install poetry | ||
poetry --version | ||
- name: Install Nox | ||
run: | | ||
pipx install --pip-args=--constraint=.github/workflows/constraints.txt nox | ||
pipx inject --pip-args=--constraint=.github/workflows/constraints.txt nox nox-poetry | ||
pipx install nox | ||
pipx inject nox nox-poetry | ||
nox --version | ||
- name: Download coverage data | ||
|
@@ -158,4 +158,4 @@ jobs: | |
nox --session=coverage -- xml -i | ||
- name: Upload coverage report | ||
uses: codecov/[email protected] | ||
uses: codecov/[email protected] |