Browse Source

install typing for python 2.7

pull/2/head
Brett Langdon 5 years ago
parent
commit
3c2f52c301
Signed by: brettlangdon GPG Key ID: A70042D88B95AA2B
2 changed files with 3 additions and 8 deletions
  1. +1
    -7
      poetry.lock
  2. +2
    -1
      pyproject.toml

+ 1
- 7
poetry.lock View File

@ -201,9 +201,6 @@ category = "dev"
optional = false
python-versions = "*"
[package.dependencies]
typing = {version = ">=3.5.3", markers = "python_version < \"3.5\""}
[[package]]
name = "packaging"
version = "20.9"
@ -349,9 +346,6 @@ category = "dev"
optional = false
python-versions = "*"
[package.dependencies]
typing = {version = ">=3.7.4", markers = "python_version < \"3.5\""}
[[package]]
name = "wcwidth"
version = "0.2.5"
@ -381,7 +375,7 @@ testing = ["pathlib2", "unittest2", "jaraco.itertools", "func-timeout"]
[metadata]
lock-version = "1.1"
python-versions = "~2.7 || ~=3.5"
content-hash = "2f4ea44e6a53ed63ef7ebef24ef1a6980fbd6d5e1413fbdcdffde3695cd7f8d1"
content-hash = "fe83468734284b10f0b424dab2cf20729e7feab41eac731cc1b7e86b4accc4f1"
[metadata.files]
appdirs = [


+ 2
- 1
pyproject.toml View File

@ -17,7 +17,8 @@ Cython = "^0.29.21"
black = {version = "^20.8b1", python = "~=3.6"}
pytest = {version = "~=4.6"}
mock = "~=3.0"
mypy = {version = "^0.800", python = "~=3.5"}
mypy = {version = "~=0.800", python = "~=3.5"}
typing = {version = "~=3.7.4", python = "~=2.7"}
[build-system]
requires = ["poetry-core>=1.0.0", "Cython", "setuptools"]


Loading…
Cancel
Save