Skip to content

adding older pythons as well #86

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 9 commits into from
Mar 10, 2022
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 <oss@redis.com>"]
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/