Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 5247bc9

Browse files
authored
Merge pull request #1780 from stonebig/master
impoosible error: bash pedal to pwsh ?
2 parents 7dc3e3f + b123a3f commit 5247bc9

File tree

2 files changed

+21
-3
lines changed

2 files changed

+21
-3
lines changed

.github/workflows/build_wppm.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff 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

.github/workflows/build_wppm_test.yml

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
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

0 commit comments

Comments
 (0)