Bump Python requirement to 3.7.
This commit is contained in:
parent
b62b760cb4
commit
0b5cdd8e3d
2 changed files with 2 additions and 2 deletions
|
@ -1,7 +1,7 @@
|
||||||
[main]
|
[main]
|
||||||
# mode =
|
# mode =
|
||||||
# immediately : Immediately generate and submit post to own subreddit. PM reddit notify_users with link to post. This
|
# immediately : Immediately generate and submit post to own subreddit. PM reddit notify_users with link to post. This
|
||||||
# mode is useful for cron jobs, e.g. generating at midnight: '0 0 * * * /usr/local/bin/python3.6 -m dailyreleases'.
|
# mode is useful for cron jobs, e.g. generating at midnight: '0 0 * * * /usr/local/bin/python3.7 -m dailyreleases'.
|
||||||
# reply : Listen for reddit PMs; on receipt, generate and submit post to own subreddit. Reply with link to post.
|
# reply : Listen for reddit PMs; on receipt, generate and submit post to own subreddit. Reply with link to post.
|
||||||
# test : Generate and print to log and console. Nothing is posted to reddit.
|
# test : Generate and print to log and console. Nothing is posted to reddit.
|
||||||
mode = test
|
mode = test
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -27,7 +27,7 @@ setup(
|
||||||
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
|
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
|
||||||
"Programming Language :: Python :: 3",
|
"Programming Language :: Python :: 3",
|
||||||
],
|
],
|
||||||
python_requires=">=3.6",
|
python_requires=">=3.7",
|
||||||
license=__licence__,
|
license=__licence__,
|
||||||
packages=find_packages(exclude=["tests"]),
|
packages=find_packages(exclude=["tests"]),
|
||||||
include_package_data=True,
|
include_package_data=True,
|
||||||
|
|
Reference in a new issue