Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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"
Expand Down
13 changes: 7 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>"]
license = "BSD-3-Clause"
Expand All @@ -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',
Expand All @@ -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"]
Expand Down
1 change: 0 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,3 @@ commands =
commands =
# flake8 --show-source
vulture redisgraph_bulk_loader/ --min-confidence 80
bandit redisgraph_bulk_loader/