diff --git a/.circleci/config.yml b/.circleci/config.yml index df87cf6..0c15725 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -62,7 +62,7 @@ commands: command: | # https://github.com/python-poetry/poetry/issues/4210 poetry config experimental.new-installer false - poetry install + poetry install --no-dev - run: name: build sdist and wheels @@ -120,6 +120,8 @@ python-versions: &python-versions matrix: parameters: python_version: + - "3.6.15" + - "3.7.12" - "3.8.9" - "3.9.4" - "3.10.0" diff --git a/pyproject.toml b/pyproject.toml index d47791f..fa60ef0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "redisgraph-bulk-loader" -version = "0.10.0" +version = "0.10.1" description = "RedisGraph Bulk Import Tool" authors = ["Redis Inc "] license = "BSD-3-Clause" @@ -10,6 +10,8 @@ classifiers = [ 'Topic :: Database', 'Programming Language :: Python', 'Intended Audience :: Developers', + 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.10', @@ -28,21 +30,20 @@ url = "https://redisgraph.io" repository = "https://github.com/RedisGraph/redisgraph-bulk-loader" [tool.poetry.dependencies] -python = "^3.8.5" +python = "^3.6.0" click = "^8.0.1" redis = "^4.1.4" -pathos = "^0.2.8" [tool.poetry.dev-dependencies] codecov = "^2.1.11" flake8 = "^3.9.2" -tox = "^3.23.1" +tox = "^3.15.0" tox-poetry = "^0.3.0" -bandit = "^1.7.0" -vulture = "^2.3" +vulture = "^2.3.0" pytest = "^6.2.4" pytest-cov = "^2.12.1" pathos = "^0.2.8" +typing-extensions = "^4.1.1" [build-system] requires = ["poetry-core>=1.0.0"] diff --git a/tox.ini b/tox.ini index 51f3e37..9c99bed 100644 --- a/tox.ini +++ b/tox.ini @@ -20,4 +20,3 @@ commands = commands = # flake8 --show-source vulture redisgraph_bulk_loader/ --min-confidence 80 - bandit redisgraph_bulk_loader/