File tree Expand file tree Collapse file tree 2 files changed +21
-3
lines changed
Expand file tree Collapse file tree 2 files changed +21
-3
lines changed Original file line number Diff line number Diff line change @@ -38,10 +38,19 @@ jobs:
3838 with :
3939 python-version : ${{ env.python-version }}
4040
41- - name : Install dependencies to build
41+ - name : Install dependencies to build with bash
4242 shell : bash
4343 run : |
4444 python -m pip install --no-deps --no-index --require-hashes -r ${{ env.WINPYrequirements }}
45+ # fails impossibly... ERROR: Could not find a version that satisfies the requirement build==1.2.2.post1 (from versions: none)
46+ # maybe line ending ?
47+
48+ - name : Install dependencies to build with pwsh
49+ shell : pwsh
50+ run : |
51+ python -m pip install --no-deps --no-index --require-hashes -r $env.WINPYrequirements
52+ # fails impossibly... ERROR: Could not find a version that satisfies the requirement build==1.2.2.post1 (from versions: none)
53+ # maybe line ending ?
4554
4655 - name : Build sdist
4756 shell : bash
Original file line number Diff line number Diff line change 1- name : build_wppm
1+ name : build_wppm_test
22# 2025-08-16: from TornadoWeb simple example, and full bash
33# object:
44# - learn the matrix method
@@ -38,10 +38,19 @@ jobs:
3838 with :
3939 python-version : ${{ env.python-version }}
4040
41- - name : Install dependencies to build
41+ - name : Install dependencies to build with bash
4242 shell : bash
4343 run : |
4444 python -m pip install --no-deps --no-index --require-hashes -r ${{ env.WINPYrequirements }}
45+ # fails impossibly... ERROR: Could not find a version that satisfies the requirement build==1.2.2.post1 (from versions: none)
46+ # maybe line ending ?
47+
48+ - name : Install dependencies to build with pwsh
49+ shell : pwsh
50+ run : |
51+ python -m pip install --no-deps --no-index --require-hashes -r $env.WINPYrequirements
52+ # fails impossibly... ERROR: Could not find a version that satisfies the requirement build==1.2.2.post1 (from versions: none)
53+ # maybe line ending ?
4554
4655 - name : Build sdist
4756 shell : bash
You can’t perform that action at this time.
0 commit comments