Set min python version to 3.6

This is already the case since f-strings are used.
pull/244/head
Ivan Habunek 2022-12-02 09:22:31 +01:00
rodzic 05c900c297
commit 48a9b2d3dd
1 zmienionych plików z 1 dodań i 5 usunięć

Wyświetl plik

@ -30,13 +30,9 @@ setup(
'Environment :: Console',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
packages=['toot', 'toot.tui'],
python_requires=">=3.4",
python_requires=">=3.6",
install_requires=[
"requests>=2.13,<3.0",
"beautifulsoup4>=4.5.0,<5.0",