Skip to content

Commit ec0ac47

Browse files
authored
returning python 2.7 support (#114)
1 parent 1e7a012 commit ec0ac47

File tree

1 file changed

+15
-20
lines changed

1 file changed

+15
-20
lines changed

pyproject.toml

Lines changed: 15 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "RLTest"
3-
version = "0.4"
3+
version = "0.4.1"
44
description="Redis Labs Test Framework, allow to run tests on redis and modules on a variety of environments"
55
authors = ["RedisLabs <[email protected]>"]
66
license = "BSD-3-Clause"
@@ -23,25 +23,11 @@ classifiers = [
2323
]
2424

2525
[tool.poetry.dependencies]
26-
python = "^3.6"
27-
redis = ">=3.0.0"
28-
redis-py-cluster = ">=2.1.0"
29-
distro = ">=1.4.0"
30-
psutil = "^3.0.0"
31-
32-
[tool.poetry.dev-dependencies]
33-
codecov = "^2.1.11"
34-
flake8 = "^3.9.2"
35-
rmtest = "^0.7.0"
36-
nose = "^1.3.7"
37-
ml2rt = "^0.2.0"
38-
tox = ">=3.23.1"
39-
tox-poetry = "^0.3.0"
40-
bandit = "^1.7.0"
41-
pylint = "^2.8.2"
42-
vulture = "^2.3"
43-
pytest = "^6.2.4"
44-
pytest-cov = "^2.12.0"
26+
python = "^2.7"
27+
distro = "^1.5.0"
28+
redis = "^3.5.3"
29+
redis-py-cluster = "^2.1.3"
30+
psutil = "^5.8.0"
4531

4632
[tool.poetry.urls]
4733
repository = "https://github.com/RedisLabsModules/RLTest"
@@ -50,6 +36,15 @@ repository = "https://github.com/RedisLabsModules/RLTest"
5036
RLTest = 'RLTest.__main__:main'
5137

5238

39+
40+
[tool.poetry.dev-dependencies]
41+
codecov = "^2.1.11"
42+
flake8 = "^3.9.2"
43+
rmtest = "^0.7.0"
44+
nose = "^1.3.7"
45+
ml2rt = "^0.2.0"
46+
pytest = "4.6"
47+
pytest-cov = "^2.12.1"
5348
[build-system]
5449
requires = ["poetry-core>=1.0.0"]
5550
build-backend = "poetry.core.masonry.api"

0 commit comments

Comments
 (0)