File tree Expand file tree Collapse file tree 3 files changed +10
-8
lines changed Expand file tree Collapse file tree 3 files changed +10
-8
lines changed Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ commands:
6262 command : |
6363 # https://github.com/python-poetry/poetry/issues/4210
6464 poetry config experimental.new-installer false
65- poetry install
65+ poetry install --no-dev
6666
6767 - run :
6868 name : build sdist and wheels
@@ -120,6 +120,8 @@ python-versions: &python-versions
120120 matrix :
121121 parameters :
122122 python_version :
123+ - " 3.6.15"
124+ - " 3.7.12"
123125 - " 3.8.9"
124126 - " 3.9.4"
125127 - " 3.10.0"
Original file line number Diff line number Diff line change 11[tool .poetry ]
22name = " redisgraph-bulk-loader"
3- version = " 0.10.0 "
3+ version = " 0.10.1 "
44description = " RedisGraph Bulk Import Tool"
55authors = [" Redis Inc <oss@redis.com>" ]
66license = " BSD-3-Clause"
@@ -10,6 +10,8 @@ classifiers = [
1010 ' Topic :: Database' ,
1111 ' Programming Language :: Python' ,
1212 ' Intended Audience :: Developers' ,
13+ ' Programming Language :: Python :: 3.6' ,
14+ ' Programming Language :: Python :: 3.7' ,
1315 ' Programming Language :: Python :: 3.8' ,
1416 ' Programming Language :: Python :: 3.9' ,
1517 ' Programming Language :: Python :: 3.10' ,
@@ -28,21 +30,20 @@ url = "https://redisgraph.io"
2830repository = " https://github.com/RedisGraph/redisgraph-bulk-loader"
2931
3032[tool .poetry .dependencies ]
31- python = " ^3.8.5 "
33+ python = " ^3.6.0 "
3234click = " ^8.0.1"
3335redis = " ^4.1.4"
34- pathos = " ^0.2.8"
3536
3637[tool .poetry .dev-dependencies ]
3738codecov = " ^2.1.11"
3839flake8 = " ^3.9.2"
39- tox = " ^3.23.1 "
40+ tox = " ^3.15.0 "
4041tox-poetry = " ^0.3.0"
41- bandit = " ^1.7.0"
42- vulture = " ^2.3"
42+ vulture = " ^2.3.0"
4343pytest = " ^6.2.4"
4444pytest-cov = " ^2.12.1"
4545pathos = " ^0.2.8"
46+ typing-extensions = " ^4.1.1"
4647
4748[build-system ]
4849requires = [" poetry-core>=1.0.0" ]
Original file line number Diff line number Diff line change @@ -20,4 +20,3 @@ commands =
2020commands =
2121 # flake8 --show-source
2222 vulture redisgraph_bulk_loader/ --min-confidence 80
23- bandit redisgraph_bulk_loader/
You can’t perform that action at this time.
0 commit comments