-
Notifications
You must be signed in to change notification settings - Fork 59
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Running
pip check
in conda environments shouldn't fail (#1531)
### What kind of change does this PR introduce? * Forces the results of `pip check` for conda builds to always `exit 0` * Use `python -m` for calling workflow python commands * Fixes the malformed link to the build status ### Does this PR introduce a breaking change? No. ### Other information: It seems that there's a bit of a lag on the conda side of things when it comes to dependencies. The bug causing these failures has been addressed upstream: conda/conda#13258
- Loading branch information
Showing
7 changed files
with
27 additions
and
20 deletions.
There are no files selected for viewing
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
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
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 |
---|---|---|
|
@@ -20,8 +20,10 @@ jobs: | |
with: | ||
python-version: "3.x" | ||
- name: Install packaging libraries | ||
run: pip install flit | ||
run: | | ||
python -m pip install flit | ||
- name: Build a binary wheel and a source tarball | ||
run: flit build | ||
run: | | ||
python -m flit build | ||
- name: Publish distribution 📦 to PyPI | ||
uses: pypa/[email protected] |
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 |
---|---|---|
|
@@ -20,9 +20,11 @@ jobs: | |
with: | ||
python-version: "3.x" | ||
- name: Install packaging libraries | ||
run: pip install flit | ||
run: | | ||
python -m pip install flit | ||
- name: Build a binary wheel and a source tarball | ||
run: flit build | ||
run: | | ||
python -m flit build | ||
- name: Publish distribution 📦 to Test PyPI | ||
uses: pypa/[email protected] | ||
with: | ||
|
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
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
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