From 72169dfb90a1fdc6c58d450d1c9d167765850b5b Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Tue, 3 Oct 2023 09:20:12 -0300 Subject: [PATCH] [pre-commit.ci] pre-commit autoupdate (#226) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * [pre-commit.ci] pre-commit autoupdate updates: - [github.com/codespell-project/codespell: v2.2.5 → v2.2.6](https://github.com/codespell-project/codespell/compare/v2.2.5...v2.2.6) - [github.com/asottile/pyupgrade: v3.13.0 → v3.14.0](https://github.com/asottile/pyupgrade/compare/v3.13.0...v3.14.0) - [github.com/asottile/reorder-python-imports: v3.11.0 → v3.12.0](https://github.com/asottile/reorder-python-imports/compare/v3.11.0...v3.12.0) * Fix typos * Fix typos --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Bruno Oliveira --- .pre-commit-config.yaml | 6 +++--- CHANGELOG.rst | 4 ++-- doc/example/test_proxy.rst | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 53565e3a..43122b6e 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,6 +1,6 @@ repos: - repo: https://github.com/codespell-project/codespell - rev: v2.2.5 + rev: v2.2.6 hooks: - id: codespell - repo: https://github.com/psf/black @@ -19,12 +19,12 @@ repos: - id: end-of-file-fixer - id: check-yaml - repo: https://github.com/asottile/pyupgrade - rev: v3.13.0 + rev: v3.14.0 hooks: - id: pyupgrade args: [--py37-plus] - repo: https://github.com/asottile/reorder-python-imports - rev: v3.11.0 + rev: v3.12.0 hooks: - id: reorder-python-imports args: ['--application-directories=execnet', --py37-plus] diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 3776bad1..a0f0d67a 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -130,7 +130,7 @@ (this also fixes the bpython interaction issues) - Fix issue38: provide ability to connect to Vagrant VMs easily - using :code:`vagrant_ssh=defaut` or :code:`vagrant_ssh=machinename` + using :code:`vagrant_ssh=default` or :code:`vagrant_ssh=machinename` this feature is experimental and will be refined in future releases. Thanks Christian Theune for the discussion and the initial pull request. @@ -432,7 +432,7 @@ * make internal protocols more robust against serialization failures -* fix a seralization bug with nested tuples containing empty tuples +* fix a serialization bug with nested tuples containing empty tuples (thanks to ronny for discovering it) * setting the environment variable EXECNET_DEBUG will generate per diff --git a/doc/example/test_proxy.rst b/doc/example/test_proxy.rst index 0a90f258..a4f45f37 100644 --- a/doc/example/test_proxy.rst +++ b/doc/example/test_proxy.rst @@ -7,7 +7,7 @@ Simple Proxying Using the via arg of specs we can create a gateway whose io is created on a remote gateway and proxied to the master. -The simlest use case, is where one creates one master process +The simplest use case, is where one creates one master process and uses it to control new workers and their environment ::