Skip to content

Commit 8685335

Browse files
committed
Update default versions for pip, setuptools, and wheel
1 parent 429ad83 commit 8685335

2 files changed

Lines changed: 6 additions & 5 deletions

File tree

changelog.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
# Changelog
22

3-
## v1.4.5 | In development
3+
## v1.4.5 | 2022-07-15
44

55
- Fixed license collection failing with some packages on Windows (bumped default `pip-licenses` to v3.5.4 with the bug fix)
6+
- Updated default recipe options to `pip` v22.1.2, `setuptools` v63.2.0, and `wheel` v0.37.1 to improve compatibility with the latest PyPI packages
67

78
## v1.4.4 | 2022-03-30
89

conanfile.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# noinspection PyUnresolvedReferences
77
class EmbeddedPython(ConanFile):
88
name = "embedded_python"
9-
version = "1.4.4" # of the Conan package, `options.version` is the Python version
9+
version = "1.4.5" # of the Conan package, `options.version` is the Python version
1010
license = "PSFL"
1111
description = "Embedded distribution of Python"
1212
topics = "embedded", "python"
@@ -24,10 +24,10 @@ class EmbeddedPython(ConanFile):
2424
}
2525
default_options = {
2626
"packages": None,
27-
"pip_version": "21.2.4",
27+
"pip_version": "22.1.2",
2828
"pip_licenses_version": "3.5.4",
29-
"setuptools_version": "57.5.0",
30-
"wheel_version": "0.37.0",
29+
"setuptools_version": "63.2.0",
30+
"wheel_version": "0.37.1",
3131
"openssl_variant": "lowercase"
3232
}
3333
exports = "embedded_python_tools.py", "embedded_python.cmake"

0 commit comments

Comments
 (0)