Skip to content

Commit 7d91548

Browse files
committed
Update the embedded setuptools to v53.0.0
1 parent ea636e6 commit 7d91548

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

changelog.md

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
## v1.2.1 | 2021-02-15
44

55
- Fixed data and scripts not being installed with certain packages (e.g. `nbconvert>=6.0`)
6+
- Updated the embedded `setuptools` to v53.0.0
67

78
## v1.2.0 | 2020-06-08
89

conanfile.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ def build(self):
9292
packages = self.options.packages.value
9393
self._gather_licenses(bootstrap, packages)
9494

95-
packages += " setuptools==47.1.1" # some modules always assume it's installed (e.g. pytest)
95+
packages += " setuptools==53.0.0" # some modules always assume it's installed (e.g. pytest)
9696
prefix = pathlib.Path(self.build_folder) / "embedded_python"
9797
options = "--ignore-installed --no-warn-script-location"
9898
self.run(f'{bootstrap} -m pip install --no-deps --prefix "{prefix}" {options} {packages}')

0 commit comments

Comments
 (0)