-
-
Notifications
You must be signed in to change notification settings - Fork 643
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
upgrade Pex to 2.1.161 #20463
upgrade Pex to 2.1.161 #20463
Conversation
Changelogs: * https://github.com/pantsbuild/pex/releases/tag/v2.1.160 * https://github.com/pantsbuild/pex/releases/tag/v2.1.161 ``` Lockfile diff: 3rdparty/python/user_reqs.lock [python-default] == Upgraded dependencies == cryptography 41.0.7 --> 42.0.1 pex 2.1.159 --> 2.1.161 pluggy 1.3.0 --> 1.4.0 pydantic 1.10.13 --> 1.10.14 python-dotenv 1.0.0 --> 1.0.1 ``` Further suport relative to pantsbuild#15704
@@ -35,7 +35,7 @@ class PexCli(TemplatedExternalTool): | |||
name = "pex" | |||
help = "The PEX (Python EXecutable) tool (https://github.com/pantsbuild/pex)." | |||
|
|||
default_version = "v2.1.159" | |||
default_version = "v2.1.161" | |||
default_url_template = "https://github.com/pantsbuild/pex/releases/download/{version}/pex" | |||
version_constraints = ">=2.1.135,<3.0" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Although Pex doesn't break you, it does add new features. If / when Pants starts using those new features, you need to bump this lower bound to match the features Pants requires of Pex.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Acknowledged. Will bump the minimum to match whatever new feature I'm able to get to first.
We're going to need a PR for 2.1.162 soon as well, or we update this one. I figure that's a candidate for backport due to #20474, so might as well do it in a single PR if you want to update this one. |
Obsolete with #20496 |
@cburroughs perhaps further obsoleted by https://github.com/pantsbuild/pex/releases/tag/v2.1.163. |
Changelogs:
Further support relative to #15704