Skip to content

Commit

Permalink
Bump pip and setuptools
Browse files Browse the repository at this point in the history
Signed-off-by: Bernat Gabor <bgabor8@bloomberg.net>
  • Loading branch information
gaborbernat committed Oct 16, 2019
1 parent 9678174 commit ca2d2cb
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 11 deletions.
16 changes: 8 additions & 8 deletions .pre-commit-config.yaml
@@ -1,27 +1,27 @@
repos:
- repo: https://github.com/ambv/black
rev: 18.9b0
rev: 19.3b0
hooks:
- id: black
args: [--safe]
language_version: python3.7
- repo: https://github.com/asottile/blacken-docs
rev: v0.3.0
rev: v1.3.0
hooks:
- id: blacken-docs
additional_dependencies: [black==18.9b0]
language_version: python3.7
- repo: https://github.com/asottile/seed-isort-config
rev: v1.3.0
rev: v1.9.3
hooks:
- id: seed-isort-config
args: [--application-directories, '.']
- repo: https://github.com/pre-commit/mirrors-isort
rev: v4.3.4
rev: v4.3.21
hooks:
- id: isort
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v2.0.0
rev: v2.3.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
Expand All @@ -31,13 +31,13 @@ repos:
- id: trailing-whitespace
- id: check-docstring-first
- id: flake8
additional_dependencies: ["flake8-bugbear == 18.8.0"]
additional_dependencies: ["flake8-bugbear == 19.8.0"]
language_version: python3.7
- repo: https://github.com/asottile/pyupgrade
rev: v1.10.0
rev: v1.24.1
hooks:
- id: pyupgrade
- repo: https://github.com/pre-commit/pygrep-hooks
rev: v1.1.0
rev: v1.4.1
hooks:
- id: rst-backticks
1 change: 1 addition & 0 deletions docs/changelog/tbd.bugfix.rst
@@ -0,0 +1 @@
bump bundled pip from ``19.2.3`` to ``19.3`` and setuptools from ``41.2.0`` to ``41.4.0``
2 changes: 1 addition & 1 deletion tox.ini
Expand Up @@ -84,7 +84,7 @@ description = format the code base to adhere to our styles, and complain about w
basepython = python3.7
passenv = *
deps = {[testenv]deps}
pre-commit == 1.12.0
pre-commit >= 1.12.0, <2
skip_install = True
commands = pre-commit run --all-files --show-diff-on-failure
python -c 'import pathlib; print("hint: run \{\} install to add checks as pre-commit hook".format(pathlib.Path(r"{envdir}") / "bin" / "pre-commit"))'
Expand Down
2 changes: 1 addition & 1 deletion virtualenv.py
Expand Up @@ -2594,7 +2594,7 @@ def do_macho(file, bits, endian):
# If the string is what is being replaced, overwrite it.
if load == what:
file.seek(where + name_offset, os.SEEK_SET)
file.write(value.encode() + "\0".encode())
file.write(value.encode() + b"\0")
# Seek to the next command
file.seek(where + cmd_size, os.SEEK_SET)

Expand Down
1 change: 0 additions & 1 deletion virtualenv_embedded/deactivate.bat
Expand Up @@ -17,4 +17,3 @@ if not defined _OLD_VIRTUAL_PATH goto ENDIFVPATH
set "PATH=%_OLD_VIRTUAL_PATH%"
set _OLD_VIRTUAL_PATH=
:ENDIFVPATH

Binary file removed virtualenv_support/pip-19.1.1-py2.py3-none-any.whl
Binary file not shown.
Binary file not shown.
Binary file not shown.

0 comments on commit ca2d2cb

Please sign in to comment.