From 562e653e51ecffc10b7b6600cadc64244f744f6b Mon Sep 17 00:00:00 2001 From: Daniel Coman Date: Wed, 8 Jan 2025 12:30:08 +0200 Subject: [PATCH] Less stringent dependencies, support only python>3.7 --- setup.py | 19 +++++++------------ 1 file changed, 7 insertions(+), 12 deletions(-) diff --git a/setup.py b/setup.py index 5996750..296ff23 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,3 @@ -import os -import sys - try: from setuptools import setup except ImportError: @@ -13,10 +10,9 @@ 'deepmerge==1.1.1', 'lru_cache==0.2.3', 'backports.functools_lru_cache==1.6.6', - 'pathlib2==2.3.7.post1', - 'pyyaml==6.0.2', - 'boto3==1.35.94', - 'hvac==2.3.0' + 'pyyaml~=6.0.2', + 'boto3~=1.35.94', + 'hvac~=2.3.0' ] setup( @@ -37,14 +33,13 @@ 'License :: OSI Approved :: Apache Software License', 'Operating System :: OS Independent', 'Programming Language :: Python', - 'Programming Language :: Python :: 2', - 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.4', - 'Programming Language :: Python :: 3.5', - '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', + 'Programming Language :: Python :: 3.11', + 'Programming Language :: Python :: 3.12', 'Programming Language :: Python :: Implementation :: CPython', 'Programming Language :: Python :: Implementation :: PyPy', 'Topic :: Internet :: WWW/HTTP :: Dynamic Content',