Bump typed-ast minimum to 1.4.3 for 3.10 compat (#2519)

This commit is contained in:
Richard Si 2021-10-04 20:36:57 -04:00 committed by GitHub
parent 3500e1cda5
commit 872bb9474e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 6 additions and 5 deletions

View File

@ -5,6 +5,7 @@
### _Black_ ### _Black_
- Add new `--workers` parameter (#2514) - Add new `--workers` parameter (#2514)
- Bumped typed-ast version minimum to 1.4.3 for 3.10 compatiblity (#2519)
### _Blackd_ ### _Blackd_

View File

@ -44,7 +44,7 @@ mypy_extensions = ">=0.4.3"
pathspec = ">=0.8.1" pathspec = ">=0.8.1"
regex = ">=2020.1.8" regex = ">=2020.1.8"
tomli = ">=0.2.6, <2.0.0" 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"} typing_extensions = {markers = "python_version < '3.10'", version = ">=3.10.0.0"}
black = {editable = true,extras = ["d"],path = "."} black = {editable = true,extras = ["d"],path = "."}
dataclasses = {markers = "python_version < '3.7'", version = ">0.1.3"} dataclasses = {markers = "python_version < '3.7'", version = ">0.1.3"}

6
Pipfile.lock generated
View File

@ -1,7 +1,7 @@
{ {
"_meta": { "_meta": {
"hash": { "hash": {
"sha256": "6dbdff058fac8e6492f9d64194e98e48e062946ec4c06f9bb7df517d1dd89ce8" "sha256": "4baa020356174f89177af103f1966928e7b9c2a69df3a9d4e8070eb83ee19387"
}, },
"pipfile-spec": 6, "pipfile-spec": 6,
"requires": {}, "requires": {},
@ -311,7 +311,7 @@
"sha256:e683e409e5c45d5c9082dc1daf13f6374300806240719f95dc783d1fc942af10" "sha256:e683e409e5c45d5c9082dc1daf13f6374300806240719f95dc783d1fc942af10"
], ],
"index": "pypi", "index": "pypi",
"version": "==1.4.2" "version": "==1.4.3"
}, },
"typing-extensions": { "typing-extensions": {
"hashes": [ "hashes": [
@ -1484,7 +1484,7 @@
"sha256:e683e409e5c45d5c9082dc1daf13f6374300806240719f95dc783d1fc942af10" "sha256:e683e409e5c45d5c9082dc1daf13f6374300806240719f95dc783d1fc942af10"
], ],
"index": "pypi", "index": "pypi",
"version": "==1.4.2" "version": "==1.4.3"
}, },
"types-dataclasses": { "types-dataclasses": {
"hashes": [ "hashes": [

View File

@ -88,7 +88,7 @@ def get_long_description() -> str:
extras_require={ extras_require={
"d": ["aiohttp>=3.7.4"], "d": ["aiohttp>=3.7.4"],
"colorama": ["colorama>=0.4.3"], "colorama": ["colorama>=0.4.3"],
"python2": ["typed-ast>=1.4.2"], "python2": ["typed-ast>=1.4.3"],
"uvloop": ["uvloop>=0.15.2"], "uvloop": ["uvloop>=0.15.2"],
"jupyter": ["ipython>=7.8.0", "tokenize-rt>=3.2.0"], "jupyter": ["ipython>=7.8.0", "tokenize-rt>=3.2.0"],
}, },