Skip to content

Commit 6e0a4d0

Browse files
committed
Require Python 3.7
1 parent 594b9fe commit 6e0a4d0

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

setup.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@
3737
'License :: OSI Approved :: MIT License',
3838
'Programming Language :: Python',
3939
'Programming Language :: Python :: 3',
40-
'Programming Language :: Python :: 3.6',
4140
'Programming Language :: Python :: 3.7',
4241
'Programming Language :: Python :: 3.8',
4342
'Programming Language :: Python :: 3.9',
@@ -60,5 +59,8 @@
6059
'https://github.com/WebwareForPython/DBUtils'},
6160
platforms=['any'],
6261
license='MIT License',
63-
packages=['dbutils']
62+
packages=['dbutils'],
63+
extras_require={
64+
"pg": ["PyGreSQL >= 5"]
65+
}
6466
)

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py3{6,7,8,9,10,11}, ruff, manifest, docs, spell
2+
envlist = py3{7,8,9,10,11}, ruff, manifest, docs, spell
33

44
[testenv]
55
setenv =

0 commit comments

Comments
 (0)