Skip to content

Commit

Permalink
Bump deps
Browse files Browse the repository at this point in the history
Signed-off-by: Bernát Gábor <bgabor8@bloomberg.net>
  • Loading branch information
gaborbernat committed Feb 4, 2023
1 parent f355ddb commit 88acc80
Show file tree
Hide file tree
Showing 7 changed files with 31 additions and 31 deletions.
3 changes: 2 additions & 1 deletion .github/ISSUE_TEMPLATE/feature-request.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ assignees: ""

**Alternative Solutions**

<!-- Have you tried to workaround the problem using virtualenv or other tools? Or a different approach to solving this issue? Please elaborate here. -->
<!-- Have you tried to workaround the problem using virtualenv or other tools? Or a different approach to solving this
issue? Please elaborate here. -->

**Additional context**

Expand Down
20 changes: 10 additions & 10 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ repos:
- id: add-trailing-comma
args: [--py36-plus]
- repo: https://github.com/asottile/pyupgrade
rev: v3.2.1
rev: v3.3.1
hooks:
- id: pyupgrade
args: ["--py37-plus"]
Expand All @@ -28,25 +28,25 @@ repos:
- id: pyupgrade
files: "^(src/virtualenv/create/via_global_ref/_virtualenv.py|src/virtualenv/create/via_global_ref/builtin/python2/site.py|src/virtualenv/discovery/py_info.py|tasks/__main__zipapp.py)$"
- repo: https://github.com/PyCQA/isort
rev: 5.11.4
rev: 5.12.0
hooks:
- id: isort
- repo: https://github.com/psf/black
rev: 22.12.0
rev: 23.1.0
hooks:
- id: black
args: [--safe]
- repo: https://github.com/asottile/blacken-docs
rev: v1.12.1
rev: 1.13.0
hooks:
- id: blacken-docs
additional_dependencies: [black==22.12]
additional_dependencies: [black==23.1]
- repo: https://github.com/pre-commit/pygrep-hooks
rev: v1.9.0
rev: v1.10.0
hooks:
- id: rst-backticks
- repo: https://github.com/tox-dev/tox-ini-fmt
rev: "0.5.2"
rev: "0.6.1"
hooks:
- id: tox-ini-fmt
args: ["-p", "fix"]
Expand All @@ -55,7 +55,7 @@ repos:
hooks:
- id: flake8
additional_dependencies:
- flake8-bugbear==22.12.6
- flake8-bugbear==23.1.20
- flake8-comprehensions==3.10.1
- flake8-pytest-style==1.6
- flake8-spellcheck==0.28
Expand All @@ -68,11 +68,11 @@ repos:
hooks:
- id: prettier
additional_dependencies:
- prettier@3.0.0-alpha.4
- prettier@2.7.1
- "@prettier/plugin-xml@2.2"
args: ["--print-width=120", "--prose-wrap=always"]
- repo: https://github.com/igorshubovych/markdownlint-cli
rev: v0.32.2
rev: v0.33.0
hooks:
- id: markdownlint
- repo: meta
Expand Down
1 change: 0 additions & 1 deletion src/virtualenv/config/cli/parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,6 @@ def __init__(self, prog):
super().__init__(prog, max_help_position=32, width=240)

def _get_help_string(self, action):

text = super()._get_help_string(action)
if hasattr(action, "default_source"):
default = " (default: %(default)s)"
Expand Down
24 changes: 12 additions & 12 deletions src/virtualenv/seed/wheels/embed/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,33 +5,33 @@
BUNDLE_FOLDER = Path(__file__).absolute().parent
BUNDLE_SUPPORT = {
"3.12": {
"pip": "pip-22.3.1-py3-none-any.whl",
"setuptools": "setuptools-65.6.3-py3-none-any.whl",
"pip": "pip-23.0-py3-none-any.whl",
"setuptools": "setuptools-67.1.0-py3-none-any.whl",
"wheel": "wheel-0.38.4-py3-none-any.whl",
},
"3.11": {
"pip": "pip-22.3.1-py3-none-any.whl",
"setuptools": "setuptools-65.6.3-py3-none-any.whl",
"pip": "pip-23.0-py3-none-any.whl",
"setuptools": "setuptools-67.1.0-py3-none-any.whl",
"wheel": "wheel-0.38.4-py3-none-any.whl",
},
"3.10": {
"pip": "pip-22.3.1-py3-none-any.whl",
"setuptools": "setuptools-65.6.3-py3-none-any.whl",
"pip": "pip-23.0-py3-none-any.whl",
"setuptools": "setuptools-67.1.0-py3-none-any.whl",
"wheel": "wheel-0.38.4-py3-none-any.whl",
},
"3.9": {
"pip": "pip-22.3.1-py3-none-any.whl",
"setuptools": "setuptools-65.6.3-py3-none-any.whl",
"pip": "pip-23.0-py3-none-any.whl",
"setuptools": "setuptools-67.1.0-py3-none-any.whl",
"wheel": "wheel-0.38.4-py3-none-any.whl",
},
"3.8": {
"pip": "pip-22.3.1-py3-none-any.whl",
"setuptools": "setuptools-65.6.3-py3-none-any.whl",
"pip": "pip-23.0-py3-none-any.whl",
"setuptools": "setuptools-67.1.0-py3-none-any.whl",
"wheel": "wheel-0.38.4-py3-none-any.whl",
},
"3.7": {
"pip": "pip-22.3.1-py3-none-any.whl",
"setuptools": "setuptools-65.6.3-py3-none-any.whl",
"pip": "pip-23.0-py3-none-any.whl",
"setuptools": "setuptools-67.1.0-py3-none-any.whl",
"wheel": "wheel-0.38.4-py3-none-any.whl",
},
"3.6": {
Expand Down
Binary file not shown.
Binary file not shown.
14 changes: 7 additions & 7 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ wheel_build_env = .pkg
description = format the code base to adhere to our styles, and complain about what we cannot do automatically
skip_install = true
deps =
pre-commit>=2.21
pre-commit>=3.0.4
commands =
pre-commit run --all-files --show-diff-on-failure

Expand All @@ -51,8 +51,8 @@ description = [run locally after tests]: combine coverage data and create report
skip_install = true
deps =
covdefaults>=2.2.2
coverage[toml]>=7.0.1
diff_cover>=7.3
coverage[toml]>=7.1
diff_cover>=7.4
extras =
parallel_show_output = true
commands =
Expand All @@ -77,7 +77,7 @@ set_env =
description = check that the long description is valid (need for PyPI)
skip_install = true
deps =
build>=0.9
build>=0.10
twine>=4.0.2
extras =
commands =
Expand All @@ -97,7 +97,7 @@ commands =
description = upgrade pip/wheels/setuptools to latest
skip_install = true
deps =
black>=22.12
black>=23.1
commands =
python upgrade_wheels.py
change_dir = {toxinidir}/tasks
Expand All @@ -108,7 +108,7 @@ pass_env =
description = do a release, required posarg of the version number
deps =
gitpython>=3.1.30
packaging>=22
packaging>=23
towncrier>=22.12
commands =
python release.py --version {posargs}
Expand All @@ -128,6 +128,6 @@ package = editable
description = generate a zipapp
skip_install = true
deps =
packaging>=22
packaging>=23
commands =
python tasks/make_zipapp.py

0 comments on commit 88acc80

Please sign in to comment.