Skip to content

Commit

Permalink
chore: prepare for 1.7.2 (#572)
Browse files Browse the repository at this point in the history
* chore: bump pre-commit

* docs: update changelog

* chore: drop unneeded line
  • Loading branch information
henryiii authored Dec 23, 2021
1 parent 71a9887 commit a9afee4
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ repos:
- id: fix-encoding-pragma

- repo: https://github.com/psf/black
rev: "21.11b1"
rev: "21.12b0"
hooks:
- id: black

Expand Down Expand Up @@ -50,7 +50,7 @@ repos:
stages: [manual]

- repo: https://github.com/pre-commit/mirrors-mypy
rev: "v0.910-1"
rev: "v0.930"
hooks:
- id: mypy
files: plumbum
Expand Down
8 changes: 8 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
1.7.2
-----

* Commands: avoid issue mktemp issue on some BSD variants (`#571 <https://github.com/tomerfiliba/plumbum/pull/571>`_)
* Better specification of dependency on pywin32 (`#568 <https://github.com/tomerfiliba/plumbum/pull/568>`_)
* Some DeprecationWarnings changed to FutureWarnings (`#567 <https://github.com/tomerfiliba/plumbum/pull/567>`_)


1.7.1
-----

Expand Down
1 change: 0 additions & 1 deletion plumbum/cli/i18n.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ def ngettext(self, str1, strN, n):
def get_translation_for(package_name):
return NullTranslation()


else:
import gettext
import os
Expand Down
1 change: 0 additions & 1 deletion plumbum/fs/atomic.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@ def locked_file(fileno, blocking=True):
finally:
UnlockFile(hndl, 0, 0, 0xFFFFFFFF, 0xFFFFFFFF)


else:
if hasattr(fcntl, "lockf"):

Expand Down
1 change: 0 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,6 @@ select = C,E,F,W,B,B9

[tool:isort]
profile = black
multi_line_output = 3

[check-manifest]
ignore =
Expand Down

0 comments on commit a9afee4

Please sign in to comment.