Skip to content

Commit b330ad8

Browse files
authored
Upgrade pexrc to 0.12.5. (#3178)
1 parent 077a78d commit b330ad8

3 files changed

Lines changed: 10 additions & 2 deletions

File tree

CHANGES.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Release Notes
22

3+
## 2.95.2
4+
5+
This release upgrades the minimum version required of the `pexrc` tool to 0.12.5 to satisfy `--rc`
6+
requests when building PEXes. This new version floor pulls in a fix for non-normalized project name
7+
handling when reading wheel metadata. See: https://github.com/pex-tool/pex.rc/issues/103.
8+
9+
* Upgrade `pexrc` to 0.12.5. (#3178)
10+
311
## 2.95.1
412

513
This release fixes a bug in the `--venv-repository` resolver that ignored extras when determining if

pex/rc/pexrc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232

3333

3434
PEXRC_RELEASES_URL = "https://github.com/pex-tool/pex.rc/releases"
35-
MIN_PEXRC_VERSION = Version("0.12.3")
35+
MIN_PEXRC_VERSION = Version("0.12.5")
3636
PEXRC_REQUIREMENT = SpecifierSet("~={min_version}".format(min_version=MIN_PEXRC_VERSION))
3737

3838

pex/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Copyright 2015 Pex project contributors.
22
# Licensed under the Apache License, Version 2.0 (see LICENSE).
33

4-
__version__ = "2.95.1"
4+
__version__ = "2.95.2"

0 commit comments

Comments
 (0)