Skip to content

Commit 91bbf73

Browse files
committed
Updating the setup.py python versions based on latest LTS dates
1 parent 9345627 commit 91bbf73

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

setup.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
#!/usr/bin/env python
22

3-
from setuptools.depends import get_module_constant
43
from setuptools import setup # noqa
4+
from setuptools.depends import get_module_constant
55

66
dl_url = "https://github.com/linsomniac/python-memcached/releases/download/{0}/python-memcached-{0}.tar.gz"
77

8-
version = get_module_constant('memcache', '__version__')
8+
version = get_module_constant("memcache", "__version__")
99
setup(
1010
name="python-memcached",
1111
version=version,
@@ -17,9 +17,11 @@
1717
maintainer="Sean Reifschneider",
1818
maintainer_email="[email protected]",
1919
url="https://github.com/linsomniac/python-memcached",
20-
download_url="https://github.com/linsomniac/python-memcached/releases/download/{0}/python-memcached-{0}.tar.gz".format(version), # noqa
20+
download_url="https://github.com/linsomniac/python-memcached/releases/download/{0}/python-memcached-{0}.tar.gz".format(
21+
version
22+
), # noqa
2123
py_modules=["memcache"],
22-
install_requires=open('requirements.txt').read().split(),
24+
install_requires=open("requirements.txt").read().split(),
2325
classifiers=[
2426
"Development Status :: 5 - Production/Stable",
2527
"Intended Audience :: Developers",
@@ -30,12 +32,10 @@
3032
"Topic :: Software Development :: Libraries :: Python Modules",
3133
"Programming Language :: Python",
3234
"Programming Language :: Python :: 3",
33-
"Programming Language :: Python :: 3.6",
34-
"Programming Language :: Python :: 3.7",
35-
"Programming Language :: Python :: 3.8",
3635
"Programming Language :: Python :: 3.9",
3736
"Programming Language :: Python :: 3.10",
3837
"Programming Language :: Python :: 3.11",
3938
"Programming Language :: Python :: 3.12",
39+
"Programming Language :: Python :: 3.13",
4040
],
4141
)

0 commit comments

Comments
 (0)