Skip to content

Commit cbc92fd

Browse files
committed
Upgrade setuptools to 67.7.2
1 parent 4428130 commit cbc92fd

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

news/setuptools.vendor.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Upgrade setuptools to 67.6.1
1+
Upgrade setuptools to 67.7.2

src/pip/_vendor/pkg_resources/__init__.py

+3
Original file line numberDiff line numberDiff line change
@@ -3046,6 +3046,9 @@ def has_version(self):
30463046
except ValueError:
30473047
issue_warning("Unbuilt egg for " + repr(self))
30483048
return False
3049+
except SystemError:
3050+
# TODO: remove this except clause when python/cpython#103632 is fixed.
3051+
return False
30493052
return True
30503053

30513054
def clone(self, **kw):

src/pip/_vendor/vendor.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ rich==13.3.3
1616
pygments==2.14.0
1717
typing_extensions==4.5.0
1818
resolvelib==1.0.1
19-
setuptools==67.6.1
19+
setuptools==67.7.2
2020
six==1.16.0
2121
tenacity==8.2.2
2222
tomli==2.0.1

0 commit comments

Comments
 (0)