From e35e3809a450941c836e30fad30519aa841399e5 Mon Sep 17 00:00:00 2001 From: MatejKastak Date: Mon, 8 Jan 2024 13:11:29 +0100 Subject: [PATCH] chore: Expand python compatibility to ^3.8 --- plugins/yls-yara/pyproject.toml | 2 +- poetry.lock | 6 +++--- pyproject.toml | 2 +- pytest-yls/pyproject.toml | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/plugins/yls-yara/pyproject.toml b/plugins/yls-yara/pyproject.toml index d86e953..d905fc6 100644 --- a/plugins/yls-yara/pyproject.toml +++ b/plugins/yls-yara/pyproject.toml @@ -9,7 +9,7 @@ license = "MIT" include = ["py.typed", "LICENSE"] [tool.poetry.dependencies] -python = ">=3.8,<3.12" +python = "^3.8" yara-python = "^4.2.0" yls = "^1.4.0" diff --git a/poetry.lock b/poetry.lock index 203f98e..8b5ce4e 100644 --- a/poetry.lock +++ b/poetry.lock @@ -667,7 +667,7 @@ name = "pytest-yls" version = "1.4.0" description = "Pytest plugin to test the YLS as a whole." optional = false -python-versions = ">=3.8,<3.12" +python-versions = "^3.8" files = [] develop = true @@ -887,5 +887,5 @@ testing = ["big-O", "jaraco.functools", "jaraco.itertools", "more-itertools", "p [metadata] lock-version = "2.0" -python-versions = ">=3.8,<3.12" -content-hash = "127fca01fa5cfa703700ab82b9d74dd90668d807e9d38d25ab9a2419a2458f5f" +python-versions = "^3.8" +content-hash = "146ac0aca49e63e59217210d0d5e29156f8adfc8a4fe1da6a666707d867bf1db" diff --git a/pyproject.toml b/pyproject.toml index b5a72ad..58cbcab 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -56,7 +56,7 @@ test = "pytest -vvv --mypy --black --pylint --pylint-rcfile=pyproject.toml --cov yls = 'yls.server:main' [tool.poetry.dependencies] -python = ">=3.8,<3.12" +python = "^3.8" pygls = "^1.1.2" yaramod = "^3.21.0" yari-py = "^0.2.1" diff --git a/pytest-yls/pyproject.toml b/pytest-yls/pyproject.toml index 03744e8..399b3d9 100644 --- a/pytest-yls/pyproject.toml +++ b/pytest-yls/pyproject.toml @@ -10,7 +10,7 @@ include = ["py.typed", "LICENSE"] [tool.poetry.dependencies] pytest = "^7.2.2" -python = ">=3.8,<3.12" +python = "^3.8" tenacity = "^8.0.1" [tool.poetry.plugins.pytest11]