We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 76a9787 commit 41453b5Copy full SHA for 41453b5
.github/workflows/ci.yml
@@ -88,7 +88,7 @@ jobs:
88
github.event_name != 'pull_request'
89
90
strategy:
91
- fail-fast: true
+ fail-fast: false
92
matrix:
93
os: [Ubuntu, MacOS]
94
python:
src/pip/_internal/operations/install/wheel.py
@@ -641,11 +641,7 @@ def pyc_output_path(path: str) -> str:
641
with warnings.catch_warnings():
642
warnings.filterwarnings('ignore')
643
for path in pyc_source_file_paths():
644
- success = compileall.compile_file(
645
- ensure_str(path, encoding=sys.getfilesystemencoding()),
646
- force=True,
647
- quiet=True,
648
- )
+ success = compileall.compile_file(path, force=True, quiet=True)
649
if success:
650
pyc_path = pyc_output_path(path)
651
assert os.path.exists(pyc_path)
0 commit comments