Drop support for Python 2

This commit is contained in:
Sean Whalen
2018-03-04 12:34:21 -05:00
parent aa73f55681
commit 7b3eb2aa2f
6 changed files with 2 additions and 10 deletions
-1
View File
@@ -3,7 +3,6 @@ language: python
sudo: false
python:
- '2.7'
- '3.4'
- '3.5'
- '3.6'
+1
View File
@@ -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
-1
View File
@@ -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
========
-1
View File
@@ -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
========
-5
View File
@@ -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
+1 -2
View File
@@ -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',