From: Philippe Proulx Date: Fri, 29 May 2020 20:52:21 +0000 (-0400) Subject: pyproject.toml: require Python 3.6+ X-Git-Url: http://git.efficios.com/?a=commitdiff_plain;ds=sidebyside;h=f59eff8157ba1ce171e98c7907155b57a66df6d3;p=deliverable%2Fbarectf.git pyproject.toml: require Python 3.6+ I want to use f-strings. Signed-off-by: Philippe Proulx --- diff --git a/poetry.lock b/poetry.lock index 116f8d6..3b030a9 100644 --- a/poetry.lock +++ b/poetry.lock @@ -91,16 +91,16 @@ description = "Backport of pathlib-compatible object wrapper for zip files" marker = "python_version < \"3.8\"" name = "zipp" optional = false -python-versions = ">=2.7" -version = "1.2.0" +python-versions = ">=3.6" +version = "3.1.0" [package.extras] docs = ["sphinx", "jaraco.packaging (>=3.2)", "rst.linker (>=1.9)"] -testing = ["pathlib2", "unittest2", "jaraco.itertools", "func-timeout"] +testing = ["jaraco.itertools", "func-timeout"] [metadata] -content-hash = "1b6983518d1480ad0ddbedeaf22f78990a3f1a9975067cecd00b00d493171609" -python-versions = '^3.5' +content-hash = "2f2cf818db3b560712dbd0c7900be46cb0135efdd4de5decc1df157991693279" +python-versions = '^3.6' [metadata.files] attrs = [ @@ -139,6 +139,6 @@ termcolor = [ {file = "termcolor-1.1.0.tar.gz", hash = "sha256:1d6d69ce66211143803fbc56652b41d73b4a400a2891d7bf7a1cdf4c02de613b"}, ] zipp = [ - {file = "zipp-1.2.0-py2.py3-none-any.whl", hash = "sha256:e0d9e63797e483a30d27e09fffd308c59a700d365ec34e93cc100844168bf921"}, - {file = "zipp-1.2.0.tar.gz", hash = "sha256:c70410551488251b0fee67b460fb9a536af8d6f9f008ad10ac51f615b6a521b1"}, + {file = "zipp-3.1.0-py3-none-any.whl", hash = "sha256:aa36550ff0c0b7ef7fa639055d797116ee891440eac1a56f378e2d3179e0320b"}, + {file = "zipp-3.1.0.tar.gz", hash = "sha256:c599e4d75c98f6798c509911d08a22e6c021d074469042177c8c86fb92eefd96"}, ] diff --git a/pyproject.toml b/pyproject.toml index e291080..c9390fb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -54,7 +54,7 @@ classifiers = [ packages = [{include = 'barectf'}] [tool.poetry.dependencies] -python = '^3.5' +python = '^3.6' termcolor = '^1.1' pyyaml = '^5.3' jsonschema = '^3.2'