Skip to content

Commit

Permalink
Refactoring Dependencies to drop 3.7 and 3.8 support
Browse files Browse the repository at this point in the history
  • Loading branch information
TheBurchLog committed Nov 1, 2024
1 parent 88edf1d commit d5290dc
Showing 1 changed file with 10 additions and 16 deletions.
26 changes: 10 additions & 16 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
],
)

0 comments on commit d5290dc

Please sign in to comment.