Skip to content

Commit fa66840

Browse files
committed
Remove workaround
1 parent b5e40f3 commit fa66840

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ jobs:
100100
run: |
101101
rm -rf dist
102102
# workaround for pypa/setuptools#4333
103-
pipx run --pip-args 'pyproject-hooks<1.1' build
103+
pipx run --pip-args 'pyproject-hooks!=1.1' build
104104
echo "PRE_BUILT_SETUPTOOLS_SDIST=$(ls dist/*.tar.gz)" >> $GITHUB_ENV
105105
echo "PRE_BUILT_SETUPTOOLS_WHEEL=$(ls dist/*.whl)" >> $GITHUB_ENV
106106
rm -rf setuptools.egg-info # Avoid interfering with the other tests

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ test = [
5757
"pytest-subprocess",
5858

5959
# workaround for pypa/pyproject-hooks#206
60-
"pyproject-hooks<1.1", # TODO: fix problem with egg-info, see #4670
60+
"pyproject-hooks!=1.1",
6161

6262
"jaraco.test",
6363
]

0 commit comments

Comments
 (0)