diff -r 5f9b76ecccf0 -r 7c67caaafdeb script/lib/iri_tweet/setup.py --- a/script/lib/iri_tweet/setup.py Thu Dec 02 13:52:58 2021 +0100 +++ b/script/lib/iri_tweet/setup.py Mon Nov 20 18:10:58 2023 +0100 @@ -27,7 +27,7 @@ def add_version(m): v = list(map(rq, m.groups()[0].split(", "))) - return (("VERSION", ".".join(v[0:3]) + "".join(v[3:])), ) + return (("VERSION", ".".join(v[0:3]) + "+" + "".join(v[3:])), ) def add_doc(m): @@ -62,8 +62,7 @@ classifiers=[ 'License :: OSI Approved :: BSD License', 'Intended Audience :: Developers', - 'Programming Language :: Python :: 2.6', - 'Programming Language :: Python :: 2.7', + 'Programming Language :: Python :: 3.9', ], keywords='twitter', author=meta["author"],