Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

drop Python 3.4 and 3.5 #245

Merged
merged 1 commit into from
Sep 24, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
dist: trusty
language: python
python:
- "3.4"
- "3.5"
- "3.6"

matrix:
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ Features
* can move mails based on arbitrary notmuch queries, so your sorting
may show on your traditional mail client (well, almost ;))
* has a ``--dry-run`` mode for safe testing
* works with python 3.4+
* works with python 3.6+



Expand Down
4 changes: 2 additions & 2 deletions afew/commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,8 @@
)

def main():
if sys.version_info < (3,4):
sys.exit("Python 3.4 or later is required.")
if sys.version_info < (3,6):
sys.exit("Python 3.6 or later is required.")

args = parser.parse_args()

Expand Down
2 changes: 1 addition & 1 deletion docs/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Installation
Requirements
------------

afew works with python 3.4+, and requires notmuch and its python bindings.
afew works with python 3.6+, and requires notmuch and its python bindings.
On Debian/Ubuntu systems you can install these by doing:

.. code-block:: sh
Expand Down