Skip to content

Commit

Permalink
Upgrade pip and setuptools
Browse files Browse the repository at this point in the history
Signed-off-by: Bernát Gábor <[email protected]>
  • Loading branch information
gaborbernat committed Jul 31, 2021
1 parent 257c256 commit 0c100f1
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 13 deletions.
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ repos:
- id: end-of-file-fixer
- id: trailing-whitespace
- repo: https://github.com/asottile/pyupgrade
rev: v2.23.0
rev: v2.23.1
hooks:
- id: pyupgrade
- repo: https://github.com/PyCQA/isort
rev: 5.9.2
rev: 5.9.3
hooks:
- id: isort
- repo: https://github.com/psf/black
Expand Down Expand Up @@ -47,4 +47,4 @@ repos:
rev: "3.9.2"
hooks:
- id: flake8
additional_dependencies: ["flake8-bugbear == 20.1.4"]
additional_dependencies: ["flake8-bugbear == 21.4.3"]
1 change: 1 addition & 0 deletions docs/changelog/2159.bugfix.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
upgrade embedded pip to ``21.2.2`` from ``21.1.3`` and setuptools to ``57.4.0`` from ``57.1.0`` - by :user:`gaborbernat`
20 changes: 10 additions & 10 deletions src/virtualenv/seed/wheels/embed/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,28 +6,28 @@
BUNDLE_FOLDER = Path(__file__).absolute().parent
BUNDLE_SUPPORT = {
"3.10": {
"pip": "pip-21.1.3-py3-none-any.whl",
"setuptools": "setuptools-57.1.0-py3-none-any.whl",
"pip": "pip-21.2.2-py3-none-any.whl",
"setuptools": "setuptools-57.4.0-py3-none-any.whl",
"wheel": "wheel-0.36.2-py2.py3-none-any.whl",
},
"3.9": {
"pip": "pip-21.1.3-py3-none-any.whl",
"setuptools": "setuptools-57.1.0-py3-none-any.whl",
"pip": "pip-21.2.2-py3-none-any.whl",
"setuptools": "setuptools-57.4.0-py3-none-any.whl",
"wheel": "wheel-0.36.2-py2.py3-none-any.whl",
},
"3.8": {
"pip": "pip-21.1.3-py3-none-any.whl",
"setuptools": "setuptools-57.1.0-py3-none-any.whl",
"pip": "pip-21.2.2-py3-none-any.whl",
"setuptools": "setuptools-57.4.0-py3-none-any.whl",
"wheel": "wheel-0.36.2-py2.py3-none-any.whl",
},
"3.7": {
"pip": "pip-21.1.3-py3-none-any.whl",
"setuptools": "setuptools-57.1.0-py3-none-any.whl",
"pip": "pip-21.2.2-py3-none-any.whl",
"setuptools": "setuptools-57.4.0-py3-none-any.whl",
"wheel": "wheel-0.36.2-py2.py3-none-any.whl",
},
"3.6": {
"pip": "pip-21.1.3-py3-none-any.whl",
"setuptools": "setuptools-57.1.0-py3-none-any.whl",
"pip": "pip-21.2.2-py3-none-any.whl",
"setuptools": "setuptools-57.4.0-py3-none-any.whl",
"wheel": "wheel-0.36.2-py2.py3-none-any.whl",
},
"3.5": {
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.

0 comments on commit 0c100f1

Please sign in to comment.