From a49d77c4df22b89dbc730168d407f67a65456a1e Mon Sep 17 00:00:00 2001
From: PGijsbers
Date: Thu, 1 Aug 2019 16:23:08 +0200
Subject: [PATCH 1/2] Remove Py3.4 classifier, add python_requires
---
setup.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/setup.py b/setup.py
index b1700073f..72c25614e 100644
--- a/setup.py
+++ b/setup.py
@@ -28,6 +28,7 @@
version=version,
packages=setuptools.find_packages(),
package_data={'': ['*.txt', '*.md']},
+ python_requires=">= 3.5",
install_requires=[
'liac-arff>=2.4.0',
'xmltodict',
@@ -72,7 +73,6 @@
'Operating System :: Unix',
'Operating System :: MacOS',
'Programming Language :: Python :: 3',
- 'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7'])
From bea3b07c3fdc54637d6e6705d90bb9ef2133046a Mon Sep 17 00:00:00 2001
From: PGijsbers
Date: Mon, 5 Aug 2019 09:28:31 +0200
Subject: [PATCH 2/2] Remove space.
---
setup.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/setup.py b/setup.py
index 72c25614e..3b271badd 100644
--- a/setup.py
+++ b/setup.py
@@ -28,7 +28,7 @@
version=version,
packages=setuptools.find_packages(),
package_data={'': ['*.txt', '*.md']},
- python_requires=">= 3.5",
+ python_requires=">=3.5",
install_requires=[
'liac-arff>=2.4.0',
'xmltodict',