From: Richard Si <63936253+ichard26@users.noreply.github.com> Date: Tue, 16 Jun 2020 18:58:33 +0000 (-0400) Subject: Fix toml parsing and bump toml from 0.10.0 to 0.10.1 (#1501) X-Git-Url: https://git.madduck.net/etc/vim.git/commitdiff_plain/6ebdc5a644b5e53b83a99eb93d63c91d0751da16?hp=6ebdc5a644b5e53b83a99eb93d63c91d0751da16 Fix toml parsing and bump toml from 0.10.0 to 0.10.1 (#1501) * Bump toml from 0.10.0 to 0.10.1 to fix a bug * Add tests for TOML parsing and reading * Fix configuration bug affecting vim plugin The vim plugin directly calls parse_pyproject and skips the Click processing , but parse_pyproject assumed that it would only be used before Click processing and therefore made the config values click friendly. This moves the "make the values click friendly processing" into read_pyproject_toml which is only called by a Click callback. * Please mypy and flake8 ---