diff --git a/.travis.yml b/.travis.yml index 591ba34..8dbbd05 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,7 +3,6 @@ language: python sudo: false python: - - '2.7' - '3.4' - '3.5' - '3.6' diff --git a/CHANGELOG.md b/CHANGELOG.md index 9d8ed4c..79cbd12 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,7 @@ - Parse reports from IMAP inbox ### Changes +- Drop support for Python 2 - Command line output is always a JSON object containing the lists `aggregate_reports` and `forensic_reports` - `-o`/`--output` option is now a path to an output directory, instead of an diff --git a/README.rst b/README.rst index 07aba23..b0177dd 100644 --- a/README.rst +++ b/README.rst @@ -15,7 +15,6 @@ Features * Transparently handles gzip or zip compressed reports * Consistent data structures * Simple JSON and/or CSV output -* Python 2 and 3 support CLI help ======== diff --git a/docs/index.rst b/docs/index.rst index e215b60..f1e4cba 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -20,7 +20,6 @@ Features * Transparently handles gzip or zip compressed reports * Consistent data structures * Simple JSON and/or CSV output -* Python 2 and 3 support CLI help ======== diff --git a/setup.cfg b/setup.cfg deleted file mode 100644 index 79bc678..0000000 --- a/setup.cfg +++ /dev/null @@ -1,5 +0,0 @@ -[bdist_wheel] -# This flag says that the code is written to work on both Python 2 and Python -# 3. If at all possible, it is good practice to do this. If you cannot, you -# will need to generate wheels for each Python version that you support. -universal=1 diff --git a/setup.py b/setup.py index ada1a6b..c983da6 100644 --- a/setup.py +++ b/setup.py @@ -64,8 +64,7 @@ setup( # Specify the Python versions you support here. In particular, ensure # that you indicate whether you support Python 2, Python 3 or both. - 'Programming Language :: Python :: 2', - 'Programming Language :: Python :: 2.7', + 'Programming Language :: Python :: 3 :: Only', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.0', 'Programming Language :: Python :: 3.1',