Skip to content

Commit 562e653

Browse files
committed
Less stringent dependencies, support only python>3.7
1 parent 54d657c commit 562e653

File tree

1 file changed

+7
-12
lines changed

1 file changed

+7
-12
lines changed

setup.py

+7-12
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
import os
2-
import sys
3-
41
try:
52
from setuptools import setup
63
except ImportError:
@@ -13,10 +10,9 @@
1310
'deepmerge==1.1.1',
1411
'lru_cache==0.2.3',
1512
'backports.functools_lru_cache==1.6.6',
16-
'pathlib2==2.3.7.post1',
17-
'pyyaml==6.0.2',
18-
'boto3==1.35.94',
19-
'hvac==2.3.0'
13+
'pyyaml~=6.0.2',
14+
'boto3~=1.35.94',
15+
'hvac~=2.3.0'
2016
]
2117

2218
setup(
@@ -37,14 +33,13 @@
3733
'License :: OSI Approved :: Apache Software License',
3834
'Operating System :: OS Independent',
3935
'Programming Language :: Python',
40-
'Programming Language :: Python :: 2',
41-
'Programming Language :: Python :: 2.7',
4236
'Programming Language :: Python :: 3',
43-
'Programming Language :: Python :: 3.4',
44-
'Programming Language :: Python :: 3.5',
45-
'Programming Language :: Python :: 3.6',
4637
'Programming Language :: Python :: 3.7',
38+
'Programming Language :: Python :: 3.8',
39+
'Programming Language :: Python :: 3.9',
4740
'Programming Language :: Python :: 3.10',
41+
'Programming Language :: Python :: 3.11',
42+
'Programming Language :: Python :: 3.12',
4843
'Programming Language :: Python :: Implementation :: CPython',
4944
'Programming Language :: Python :: Implementation :: PyPy',
5045
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',

0 commit comments

Comments
 (0)