Skip to content

Commit 41d55cc

Browse files
authored
Merge pull request #86 from lydia-duncan/revertSetupToolsInclusion
Undo setuptools changes and try a different strategy to fix the release [not reviewed] Don't include setuptools in the new package, include it in the environment used to make the new package
2 parents fa5469a + 966d340 commit 41d55cc

File tree

3 files changed

+1
-2
lines changed

3 files changed

+1
-2
lines changed

Diff for: .github/workflows/python-publish.yml

+1
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ jobs:
5151
run: |
5252
python -m pip install --upgrade pip
5353
python -m pip install wheel
54+
python -m pip install setuptools
5455
5556
- name: Build package
5657
run: |

Diff for: requirements.txt

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
# Note: DON'T UPDATE THIS WITHOUT ALSO UPDATING SETUP.PY
22
docutils==0.18
33
Sphinx==5.3.0
4-
setuptools==65.5.1

Diff for: setup.py

-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@
4444
install_requires=[
4545
'docutils==0.18',
4646
'Sphinx==5.3.0',
47-
'setuptools==65.5.1',
4847
],
4948
namespace_packages=['sphinxcontrib']
5049
)

0 commit comments

Comments
 (0)