]> 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:

Bump typed-ast minimum to 1.4.3 for 3.10 compat (#2519)
authorRichard Si <63936253+ichard26@users.noreply.github.com>
Tue, 5 Oct 2021 00:36:57 +0000 (20:36 -0400)
committerGitHub <noreply@github.com>
Tue, 5 Oct 2021 00:36:57 +0000 (17:36 -0700)
CHANGES.md
Pipfile
Pipfile.lock
setup.py

index 04e9edf692c278f4dfd1b5b9b94bce2808470355..f5b11de48032bfb2712a52593b3495bfe1ef76a4 100644 (file)
@@ -5,6 +5,7 @@
 ### _Black_
 
 - Add new `--workers` parameter (#2514)
+- Bumped typed-ast version minimum to 1.4.3 for 3.10 compatiblity (#2519)
 
 ### _Blackd_
 
diff --git a/Pipfile b/Pipfile
index 534ca50fa5dd118a1e8d54e1e069157fa7ab3bc1..90e8f62d666a39474b5b7356a30bb24865e85477 100644 (file)
--- a/Pipfile
+++ b/Pipfile
@@ -44,7 +44,7 @@ mypy_extensions = ">=0.4.3"
 pathspec = ">=0.8.1"
 regex = ">=2020.1.8"
 tomli = ">=0.2.6, <2.0.0"
-typed-ast = "==1.4.2"
+typed-ast = "==1.4.3"
 typing_extensions = {markers = "python_version < '3.10'", version = ">=3.10.0.0"}
 black = {editable = true,extras = ["d"],path = "."}
 dataclasses = {markers = "python_version < '3.7'", version = ">0.1.3"}
index 280e6498af14c236dbf180ee3914c92bfc87d2dd..2ddeca88fff112a071c9a0c4497c98a0aa55f04c 100644 (file)
@@ -1,7 +1,7 @@
 {
     "_meta": {
         "hash": {
-            "sha256": "6dbdff058fac8e6492f9d64194e98e48e062946ec4c06f9bb7df517d1dd89ce8"
+            "sha256": "4baa020356174f89177af103f1966928e7b9c2a69df3a9d4e8070eb83ee19387"
         },
         "pipfile-spec": 6,
         "requires": {},
                 "sha256:e683e409e5c45d5c9082dc1daf13f6374300806240719f95dc783d1fc942af10"
             ],
             "index": "pypi",
-            "version": "==1.4.2"
+            "version": "==1.4.3"
         },
         "typing-extensions": {
             "hashes": [
                 "sha256:e683e409e5c45d5c9082dc1daf13f6374300806240719f95dc783d1fc942af10"
             ],
             "index": "pypi",
-            "version": "==1.4.2"
+            "version": "==1.4.3"
         },
         "types-dataclasses": {
             "hashes": [
index 015f321eaa9c63c7c9f9d7a600baed1395cabe34..de84dc37bb8af7869203eff1b38f68b6fb0d7a07 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -88,7 +88,7 @@ setup(
     extras_require={
         "d": ["aiohttp>=3.7.4"],
         "colorama": ["colorama>=0.4.3"],
-        "python2": ["typed-ast>=1.4.2"],
+        "python2": ["typed-ast>=1.4.3"],
         "uvloop": ["uvloop>=0.15.2"],
         "jupyter": ["ipython>=7.8.0", "tokenize-rt>=3.2.0"],
     },