]> git.madduck.net Git - etc/vim.git/commitdiff

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

Fix toml hashes and make it clear that only TOML is supported (#1510)
authorRichard Si <63936253+ichard26@users.noreply.github.com>
Sat, 20 Jun 2020 05:29:53 +0000 (01:29 -0400)
committerGitHub <noreply@github.com>
Sat, 20 Jun 2020 05:29:53 +0000 (22:29 -0700)
* Fix TOML hashes

* Make it clear that only TOML is supported

Pipfile
Pipfile.lock
docs/compatible_configs.md

diff --git a/Pipfile b/Pipfile
index f6f5b30e7bf3ff13ed7fdc3d5cc681fc200f8cbf..3afe3bb9efd8c6c5105bb955f464881446a64bd5 100644 (file)
--- a/Pipfile
+++ b/Pipfile
@@ -28,7 +28,7 @@ click = ">=6.5"
 mypy_extensions = ">=0.4.3"
 pathspec = ">=0.6"
 regex = ">=2019.8"
-toml = "==0.10.1"
+toml = ">=0.10.1"
 typed-ast = "==1.4.0"
 typing_extensions = ">=3.7.4"
 black = {editable = true,extras = ["d"],path = "."}
index 944c89daddd5ca3db9c1fd79a5f2d28bf6034283..b0da47437933b661a4f4e3db776c9c89d53525be 100644 (file)
@@ -1,7 +1,7 @@
 {
     "_meta": {
         "hash": {
-            "sha256": "0bb8f931bef89b929375c1b1337cdaf17a2a4775d546124ad308fdb6c6eebd1b"
+            "sha256": "4a6956c7c81b496d3fd7a4e3395b332d4dc9a5bed468e36e729a4039c739ad2d"
         },
         "pipfile-spec": 6,
         "requires": {},
         },
         "toml": {
             "hashes": [
+                "sha256:bda89d5935c2eac546d648028b9901107a595863cb36bae0c73ac804a9b4ce88",
+                "sha256:926b612be1e5ce0634a2ca03470f95169cf16f939018233a670519cb4ac58b0f",
                 "sha256:229f81c57791a41d65e399fc06bf0848bab550a9dfd5ed66df18ce5f05e73d5c",
                 "sha256:235682dd292d5899d361a811df37e04a8828a5b1da3115886b73cf81ebc9100e"
             ],
         },
         "toml": {
             "hashes": [
+                "sha256:bda89d5935c2eac546d648028b9901107a595863cb36bae0c73ac804a9b4ce88",
+                "sha256:926b612be1e5ce0634a2ca03470f95169cf16f939018233a670519cb4ac58b0f",
                 "sha256:229f81c57791a41d65e399fc06bf0848bab550a9dfd5ed66df18ce5f05e73d5c",
                 "sha256:235682dd292d5899d361a811df37e04a8828a5b1da3115886b73cf81ebc9100e"
             ],
index 7e831967cb2aebe73686830f15b07e14e81e4a17..aa7cd96f16517d36468ae99fbfaf1d424ed10c65 100644 (file)
@@ -6,6 +6,10 @@ linters and type checkers. Some of them need a bit of tweaking to resolve the co
 Listed below are _Black_ compatible configurations in various formats for the common
 tools out there.
 
+**Please note** that _Black_ only supports the TOML file format for its configuration
+(e.g. `pyproject.toml`). The provided examples are to only configure their corresponding
+tools, using **their** supported file formats.
+
 ## isort
 
 [isort](https://pypi.org/p/isort/) helps to sort and format imports in your Python code.