fix: make pre-commit a dev requirement

This commit is contained in:
Egor 2020-05-06 17:27:51 +03:00
parent 46957d731f
commit 17a07f10dc
2 changed files with 15 additions and 15 deletions

28
poetry.lock generated
View file

@ -37,7 +37,7 @@ aiohttp = ">=2.3.2"
attrs = ">=19.2.0"
[[package]]
category = "main"
category = "dev"
description = "A small Python module for determining appropriate platform-specific dirs, e.g. a \"user data dir\"."
name = "appdirs"
optional = false
@ -153,7 +153,7 @@ typed-ast = ">=1.4.0"
d = ["aiohttp (>=3.3.2)", "aiohttp-cors"]
[[package]]
category = "main"
category = "dev"
description = "Validate configuration and produce human readable error messages."
name = "cfgv"
optional = false
@ -205,7 +205,7 @@ python-versions = ">=2.6, !=3.0.*, !=3.1.*"
version = "4.4.2"
[[package]]
category = "main"
category = "dev"
description = "Distribution utilities"
name = "distlib"
optional = false
@ -221,7 +221,7 @@ python-versions = ">=2.7"
version = "0.3"
[[package]]
category = "main"
category = "dev"
description = "A platform independent file lock."
name = "filelock"
optional = false
@ -264,7 +264,7 @@ python-versions = ">=2.6, !=3.0.*, !=3.1.*, !=3.2.*"
version = "0.18.2"
[[package]]
category = "main"
category = "dev"
description = "File identification library for Python"
name = "identify"
optional = false
@ -283,7 +283,7 @@ python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
version = "2.9"
[[package]]
category = "main"
category = "dev"
description = "Read metadata from Python packages"
marker = "python_version >= \"3.5\" and python_version < \"3.8\" or python_version < \"3.8\""
name = "importlib-metadata"
@ -580,7 +580,7 @@ tgrep = ["pyparsing"]
twitter = ["twython"]
[[package]]
category = "main"
category = "dev"
description = "Node.js virtual environment builder"
name = "nodeenv"
optional = false
@ -655,7 +655,7 @@ version = ">=0.12"
dev = ["pre-commit", "tox"]
[[package]]
category = "main"
category = "dev"
description = "A framework for managing and maintaining multi-language pre-commit hooks."
name = "pre-commit"
optional = false
@ -880,7 +880,7 @@ python-versions = "*"
version = "2020.1"
[[package]]
category = "main"
category = "dev"
description = "YAML parser and emitter for Python"
name = "pyyaml"
optional = false
@ -896,7 +896,7 @@ python-versions = "*"
version = "2020.4.4"
[[package]]
category = "main"
category = "dev"
description = "Python 2 and 3 compatibility utilities"
name = "six"
optional = false
@ -904,7 +904,7 @@ python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*"
version = "1.14.0"
[[package]]
category = "main"
category = "dev"
description = "Python Library for Tom's Obvious, Minimal Language"
name = "toml"
optional = false
@ -972,7 +972,7 @@ python-versions = "*"
version = "0.14.0"
[[package]]
category = "main"
category = "dev"
description = "Virtual Python Environment builder"
name = "virtualenv"
optional = false
@ -1014,7 +1014,7 @@ idna = ">=2.0"
multidict = ">=4.0"
[[package]]
category = "main"
category = "dev"
description = "Backport of pathlib-compatible object wrapper for zip files"
marker = "python_version >= \"3.5\" and python_version < \"3.8\" or python_version < \"3.8\" or python_version >= \"3.5\" and python_version < \"3.8\" and (python_version >= \"3.5\" and python_version < \"3.8\" or python_version < \"3.8\")"
name = "zipp"
@ -1031,7 +1031,7 @@ fast = ["uvloop"]
proxy = ["aiohttp-socks"]
[metadata]
content-hash = "c5cd681af0d4bb63e18555719eba352e44e0e05fde3f137a4fcb3a98277e1dc5"
content-hash = "0b325d34fff06035598724438d816a4bd1aba992e21b2fdef10ab5fafa59ff2c"
python-versions = "^3.7"
[metadata.files]

View file

@ -41,7 +41,6 @@ uvloop = {version = "^0.14.0", markers = "sys_platform == 'darwin' or sys_platfo
async_lru = "^1.0"
aiohttp-socks = {version = "^0.3.8", optional = true}
typing-extensions = "^3.7.4"
pre-commit = "^2.3.0"
[tool.poetry.dev-dependencies]
uvloop = {version = "^0.14.0", markers = "sys_platform == 'darwin' or sys_platform == 'linux'"}
@ -67,6 +66,7 @@ lxml = "^4.4"
ipython = "^7.10"
markdown-include = "^0.5.1"
aiohttp-socks = "^0.3.4"
pre-commit = "^2.3.0"
[tool.poetry.extras]
fast = ["uvloop"]