Skip to content

Commit

Permalink
Dropped support for python 3.3
Browse files Browse the repository at this point in the history
Not testable on Travis, end of life since 2017.
  • Loading branch information
ihabunek committed Jul 30, 2019
1 parent a7e4f9d commit aa208cf
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
language: python

python:
- "3.3"
- "3.4"
- "3.5"
- "3.6"
- "3.7"
- "nightly"

install:
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ Changelog

**0.22.0 (TBA)**

* **BRAEAKING**: Dropped support for Python 3.3
* Add `toot notifications` to show notifications (thanks @dlax)
* Add posting and replying to curses interface (thanks @Skehmatics)
* Add `--language` option to `toot post`
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,14 @@
'Environment :: Console',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
data_files=[('', ['Makefile'])],
packages=['toot', 'toot.ui'],
python_requires=">=3.3",
python_requires=">=3.4",
install_requires=[
"requests>=2.13,<3.0",
"beautifulsoup4>=4.5.0,<5.0",
Expand Down

0 comments on commit aa208cf

Please sign in to comment.