diff options
author | 2022-10-25 21:59:00 +0100 | |
---|---|---|
committer | 2022-10-25 21:59:00 +0100 | |
commit | 4e453a3cb0b4a059ff3bbf799803b730623072ba (patch) | |
tree | 0cc525805e2b0bd4ef5377d321002c36da5bb53b | |
parent | Simplify docker-compose volumes (diff) |
Add six as a dev dep
six used to be a Sphinx dep, and releases used it as a transitive dep, but it's since been removed from Sphinx, causing releases to raise a ModuleNotFoundError
-rw-r--r-- | poetry.lock | 14 | ||||
-rw-r--r-- | pyproject.toml | 1 |
2 files changed, 14 insertions, 1 deletions
diff --git a/poetry.lock b/poetry.lock index e4976bb4..0293ee16 100644 --- a/poetry.lock +++ b/poetry.lock @@ -805,6 +805,14 @@ testing = ["build[virtualenv]", "filelock (>=3.4.0)", "flake8 (<5)", "flake8-202 testing-integration = ["build[virtualenv]", "filelock (>=3.4.0)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "pytest", "pytest-enabler", "pytest-xdist", "tomli", "virtualenv (>=13.0.0)", "wheel"] [[package]] +name = "six" +version = "1.16.0" +description = "Python 2 and 3 compatibility utilities" +category = "dev" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*" + +[[package]] name = "smmap" version = "5.0.0" description = "A pure Python implementation of a sliding window memory map manager" @@ -1081,7 +1089,7 @@ async-rediscache = ["async-rediscache"] [metadata] lock-version = "1.1" python-versions = "3.10.* || 3.11.*" -content-hash = "a4ec22a98b0b67b8ff84abf87fa000813ad5bf67d65b8a4e8b7949feb748f331" +content-hash = "6deabe5382fe477ae22ac91937949b11e9df2e9c1b0e3e2acc4f12d1d14950cd" [metadata.files] aiodns = [ @@ -1886,6 +1894,10 @@ setuptools = [ {file = "setuptools-65.5.0-py3-none-any.whl", hash = "sha256:f62ea9da9ed6289bfe868cd6845968a2c854d1427f8548d52cae02a42b4f0356"}, {file = "setuptools-65.5.0.tar.gz", hash = "sha256:512e5536220e38146176efb833d4a62aa726b7bbff82cfbc8ba9eaa3996e0b17"}, ] +six = [ + {file = "six-1.16.0-py2.py3-none-any.whl", hash = "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254"}, + {file = "six-1.16.0.tar.gz", hash = "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926"}, +] smmap = [ {file = "smmap-5.0.0-py3-none-any.whl", hash = "sha256:2aba19d6a040e78d8b09de5c57e96207b09ed71d8e55ce0959eeee6c8e190d94"}, {file = "smmap-5.0.0.tar.gz", hash = "sha256:c840e62059cd3be204b0c9c9f74be2c09d5648eddd4580d9314c3ecde0b30936"}, diff --git a/pyproject.toml b/pyproject.toml index d4a27af1..d4ee453e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -46,6 +46,7 @@ GitPython = "3.1.29" sphinx-autodoc-typehints = "1.19.4" furo = "2022.9.29" releases = "1.6.3" +six = "1.16.0" sphinx-multiversion = "0.2.4" [tool.taskipy.tasks] |