Dropped support for python 3.3

Not testable on Travis, end of life since 2017.
This commit is contained in:
Ivan Habunek 2019-07-30 16:16:03 +02:00
parent a7e4f9d888
commit aa208cfc95
No known key found for this signature in database
GPG key ID: CDBD63C43A30BB95
3 changed files with 4 additions and 3 deletions

View file

@ -1,10 +1,10 @@
language: python language: python
python: python:
- "3.3"
- "3.4" - "3.4"
- "3.5" - "3.5"
- "3.6" - "3.6"
- "3.7"
- "nightly" - "nightly"
install: install:

View file

@ -3,6 +3,7 @@ Changelog
**0.22.0 (TBA)** **0.22.0 (TBA)**
* **BRAEAKING**: Dropped support for Python 3.3
* Add `toot notifications` to show notifications (thanks @dlax) * Add `toot notifications` to show notifications (thanks @dlax)
* Add posting and replying to curses interface (thanks @Skehmatics) * Add posting and replying to curses interface (thanks @Skehmatics)
* Add `--language` option to `toot post` * Add `--language` option to `toot post`

View file

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