From d5290dcbad7da84b7ff252dd3ce5bf927d0de2ce Mon Sep 17 00:00:00 2001 From: TheBurchLog <5104941+TheBurchLog@users.noreply.github.com> Date: Fri, 1 Nov 2024 08:51:45 -0400 Subject: [PATCH] Refactoring Dependencies to drop 3.7 and 3.8 support --- setup.py | 26 ++++++++++---------------- 1 file changed, 10 insertions(+), 16 deletions(-) diff --git a/setup.py b/setup.py index a524c862..bb425e10 100644 --- a/setup.py +++ b/setup.py @@ -31,33 +31,27 @@ def find_version(): package_data={"": ["README.md"]}, install_requires=[ "appdirs<2", - "lark-parser<0.7", - "marshmallow<3", - "marshmallow-polyfield<4", + "lark-parser<1", + "marshmallow<4", + "marshmallow-polyfield<6", "packaging", - "pika<=1.2,>=1.0.1", - "pytz<2021", + "pika<=1.4,>=1.0.1", + "pytz", "requests<3", "simplejson<4", "six<2", "wrapt", "yapconf>=0.3.7", ], - extras_require={ - ':python_version=="2.7"': ["futures", "funcsigs", "pathlib"], - ':python_version<"3.4"': ["enum34"], - ':python_version<"3.5"': ["typing"], - }, classifiers=[ "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", - "Programming Language :: Python :: 2", - "Programming Language :: Python :: 2.7", - "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.6", - "Programming Language :: Python :: 3.7", - "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3 :: Only", "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", "Topic :: Software Development :: Libraries :: Python Modules", ], )