From bba25491344b8562a4699eb40db9bbc89ce5da65 Mon Sep 17 00:00:00 2001 From: earnest ma Date: Tue, 9 May 2023 12:04:20 -0400 Subject: [PATCH] 2015/misc: Bump down to 3.10+ --- 2015/poetry.lock | 34 ++++++++++++++++++++++++++++++++-- 2015/pyproject.toml | 2 +- 2 files changed, 33 insertions(+), 3 deletions(-) diff --git a/2015/poetry.lock b/2015/poetry.lock index c9248aa..75e2745 100644 --- a/2015/poetry.lock +++ b/2015/poetry.lock @@ -41,6 +41,7 @@ mypy-extensions = ">=0.4.3" packaging = ">=22.0" pathspec = ">=0.9.0" platformdirs = ">=2" +tomli = {version = ">=1.1.0", markers = "python_version < \"3.11\""} [package.extras] colorama = ["colorama (>=0.4.3)"] @@ -75,6 +76,21 @@ files = [ {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, ] +[[package]] +name = "exceptiongroup" +version = "1.1.1" +description = "Backport of PEP 654 (exception groups)" +category = "dev" +optional = false +python-versions = ">=3.7" +files = [ + {file = "exceptiongroup-1.1.1-py3-none-any.whl", hash = "sha256:232c37c63e4f682982c8b6459f33a8981039e5fb8756b2074364e5055c498c9e"}, + {file = "exceptiongroup-1.1.1.tar.gz", hash = "sha256:d484c3090ba2889ae2928419117447a14daf3c1231d5e30d0aae34f354f01785"}, +] + +[package.extras] +test = ["pytest (>=6)"] + [[package]] name = "iniconfig" version = "2.0.0" @@ -169,14 +185,28 @@ files = [ [package.dependencies] colorama = {version = "*", markers = "sys_platform == \"win32\""} +exceptiongroup = {version = ">=1.0.0rc8", markers = "python_version < \"3.11\""} iniconfig = "*" packaging = "*" pluggy = ">=0.12,<2.0" +tomli = {version = ">=1.0.0", markers = "python_version < \"3.11\""} [package.extras] testing = ["argcomplete", "attrs (>=19.2.0)", "hypothesis (>=3.56)", "mock", "nose", "pygments (>=2.7.2)", "requests", "xmlschema"] +[[package]] +name = "tomli" +version = "2.0.1" +description = "A lil' TOML parser" +category = "dev" +optional = false +python-versions = ">=3.7" +files = [ + {file = "tomli-2.0.1-py3-none-any.whl", hash = "sha256:939de3e7a6161af0c887ef91b7d41a53e7c5a1ca976325f429cb46ea9bc30ecc"}, + {file = "tomli-2.0.1.tar.gz", hash = "sha256:de526c12914f0c550d15924c62d72abc48d6fe7364aa87328337a31007fe8a4f"}, +] + [metadata] lock-version = "2.0" -python-versions = "^3.11" -content-hash = "beb5dcfb46062aa779a7f4e4e5bd6683462ef0051a36c57addc8bcbc86a0e8aa" +python-versions = "^3.10" +content-hash = "2b5bd9324c636cd6b2c16bcc51cc5acefdd3824f096891b1817113cdc1fcf33b" diff --git a/2015/pyproject.toml b/2015/pyproject.toml index cd58113..810dcae 100644 --- a/2015/pyproject.toml +++ b/2015/pyproject.toml @@ -6,7 +6,7 @@ authors = ["Your Name "] readme = "README.md" [tool.poetry.dependencies] -python = "^3.11" +python = "^3.10" [tool.poetry.group.dev.dependencies]