From c35aa2e123ec34b69562b79e02ca7fdd8526ff79 Mon Sep 17 00:00:00 2001 From: GitBolt Date: Sat, 22 Jan 2022 00:41:53 +0530 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=A6=20Add=20dev=20dependencies=20for?= =?UTF-8?q?=20neovim?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- poetry.lock | 51 +++++++++++++++++++++++++++++++++++++++++++++++++- pyproject.toml | 3 +++ 2 files changed, 53 insertions(+), 1 deletion(-) diff --git a/poetry.lock b/poetry.lock index ba5aa3e..7cc8d4c 100644 --- a/poetry.lock +++ b/poetry.lock @@ -56,6 +56,17 @@ python-versions = ">=3.5.0" [package.extras] unicode_backport = ["unicodedata2"] +[[package]] +name = "construct" +version = "2.10.67" +description = "A powerful declarative symmetric parser/builder for binary data" +category = "main" +optional = false +python-versions = ">=3.6" + +[package.extras] +extras = ["arrow", "cloudpickle", "enum34", "lz4", "numpy", "ruamel.yaml"] + [[package]] name = "h11" version = "0.12.0" @@ -109,6 +120,33 @@ category = "main" optional = false python-versions = ">=3.5" +[[package]] +name = "jedi" +version = "0.18.1" +description = "An autocompletion tool for Python that can be used for text editors." +category = "dev" +optional = false +python-versions = ">=3.6" + +[package.dependencies] +parso = ">=0.8.0,<0.9.0" + +[package.extras] +qa = ["flake8 (==3.8.3)", "mypy (==0.782)"] +testing = ["Django (<3.1)", "colorama", "docopt", "pytest (<7.0.0)"] + +[[package]] +name = "parso" +version = "0.8.3" +description = "A Python Parser" +category = "dev" +optional = false +python-versions = ">=3.6" + +[package.extras] +qa = ["flake8 (==3.8.3)", "mypy (==0.782)"] +testing = ["docopt", "pytest (<6.0.0)"] + [[package]] name = "pycparser" version = "2.21" @@ -166,7 +204,7 @@ python-versions = ">=3.5" [metadata] lock-version = "1.1" python-versions = "^3.10" -content-hash = "5a47471a0ae242c8d861f595bc764c4f2ecb682fb4e9277531885fe2c36be057" +content-hash = "4dbd91d28e0964bbddb94326d687d76dc1fca300ae60796c3b3e14fa4972aa10" [metadata.files] anyio = [ @@ -237,6 +275,9 @@ charset-normalizer = [ {file = "charset-normalizer-2.0.10.tar.gz", hash = "sha256:876d180e9d7432c5d1dfd4c5d26b72f099d503e8fcc0feb7532c9289be60fcbd"}, {file = "charset_normalizer-2.0.10-py3-none-any.whl", hash = "sha256:cb957888737fc0bbcd78e3df769addb41fd1ff8cf950dc9e7ad7793f1bf44455"}, ] +construct = [ + {file = "construct-2.10.67.tar.gz", hash = "sha256:730235fedf4f2fee5cfadda1d14b83ef1bf23790fb1cc579073e10f70a050883"}, +] h11 = [ {file = "h11-0.12.0-py3-none-any.whl", hash = "sha256:36a3cb8c0a032f56e2da7084577878a035d3b61d104230d4bd49c0c6b555a9c6"}, {file = "h11-0.12.0.tar.gz", hash = "sha256:47222cb6067e4a307d535814917cd98fd0a57b6788ce715755fa2b6c28b56042"}, @@ -253,6 +294,14 @@ idna = [ {file = "idna-3.3-py3-none-any.whl", hash = "sha256:84d9dd047ffa80596e0f246e2eab0b391788b0503584e8945f2368256d2735ff"}, {file = "idna-3.3.tar.gz", hash = "sha256:9d643ff0a55b762d5cdb124b8eaa99c66322e2157b69160bc32796e824360e6d"}, ] +jedi = [ + {file = "jedi-0.18.1-py2.py3-none-any.whl", hash = "sha256:637c9635fcf47945ceb91cd7f320234a7be540ded6f3e99a50cb6febdfd1ba8d"}, + {file = "jedi-0.18.1.tar.gz", hash = "sha256:74137626a64a99c8eb6ae5832d99b3bdd7d29a3850fe2aa80a4126b2a7d949ab"}, +] +parso = [ + {file = "parso-0.8.3-py2.py3-none-any.whl", hash = "sha256:c001d4636cd3aecdaf33cbb40aebb59b094be2a74c556778ef5576c175e19e75"}, + {file = "parso-0.8.3.tar.gz", hash = "sha256:8c07be290bb59f03588915921e29e8a50002acaf2cdc5fa0e0114f91709fafa0"}, +] pycparser = [ {file = "pycparser-2.21-py2.py3-none-any.whl", hash = "sha256:8ee45429555515e1f6b185e78100aea234072576aa43ab53aefcae078162fca9"}, {file = "pycparser-2.21.tar.gz", hash = "sha256:e644fdec12f7872f86c58ff790da456218b10f863970249516d60a5eaca77206"}, diff --git a/pyproject.toml b/pyproject.toml index a3f5e51..e094388 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -26,8 +26,11 @@ python = "^3.10" httpx = "^0.21.2" PyNaCl = "^1.4.0" base58 = "^2.1.1" +construct = "^2.10.67" +[tool.poetry.dev-dependencies] +jedi = "^0.18.1" [build-system] requires = ["poetry-core>=1.0.0"] build-backend = "poetry.core.masonry.api"