Skip to content

Commit 3cc9537

Browse files
authored
Update publish-release.yml
1 parent dab9bdb commit 3cc9537

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/publish-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,14 +121,14 @@ jobs:
121121
if: ${{ !matrix.main }}
122122
run: |
123123
sed -i 's/\(version = "[^"]*\)"/\1+${{ matrix.matlab }}"/' pyproject.toml
124-
cat pyproject.toml
125124
126125
- name: Setup Python version (2.7)
127126
if: ${{ !matrix.py3from }}
128127
run: |
129128
sed -i 's/^python-requires = .*/python-requires = ">=2.7,<3.1"/' pyproject.toml
130129
echo "[tool.distutils.bdist_wheel]" >> pyproject.toml
131130
echo "python-tag = \"2.7\"" >> pyproject.toml
131+
cat pyproject.toml
132132
133133
- name: Setup Python version (3+)
134134
if: ${{ matrix.py3from }}
@@ -139,7 +139,7 @@ jobs:
139139
tags=$(for i in $(seq ${FROM//3./} $(( ${TO//3./} - 1)) ); do echo -n "py3$i."; done | sed 's/\.$//')
140140
echo "[tool.distutils.bdist_wheel]" >> pyproject.toml
141141
echo "python-tag = \"$tags\"" >> pyproject.toml
142-
echo pyproject.toml
142+
cat pyproject.toml
143143
144144
- name: Build package
145145
run: python -m build --sdist --wheel

0 commit comments

Comments
 (0)