remove Python version checks

pull/1633/head
Mike Fährmann 3 years ago
parent 40eb8025cc
commit e9993451c3
No known key found for this signature in database
GPG Key ID: 5680CA389D365A88

@ -6,23 +6,16 @@
# it under the terms of the GNU General Public License version 2 as # it under the terms of the GNU General Public License version 2 as
# published by the Free Software Foundation. # published by the Free Software Foundation.
from __future__ import unicode_literals, print_function import sys
import json
import logging
from . import version, config, option, output, extractor, job, util, exception
__author__ = "Mike Fährmann" __author__ = "Mike Fährmann"
__copyright__ = "Copyright 2014-2021 Mike Fährmann" __copyright__ = "Copyright 2014-2021 Mike Fährmann"
__license__ = "GPLv2" __license__ = "GPLv2"
__maintainer__ = "Mike Fährmann" __maintainer__ = "Mike Fährmann"
__email__ = "mike_faehrmann@web.de" __email__ = "mike_faehrmann@web.de"
import sys
if sys.hexversion < 0x3040000:
sys.exit("Python 3.4+ required")
import json
import logging
from . import version, config, option, output, extractor, job, util, exception
__version__ = version.__version__ __version__ = version.__version__

@ -7,9 +7,6 @@ import os.path
import warnings import warnings
from setuptools import setup from setuptools import setup
if sys.hexversion < 0x3040000:
sys.exit("Python 3.4+ required")
def read(fname): def read(fname):
path = os.path.join(os.path.dirname(__file__), fname) path = os.path.join(os.path.dirname(__file__), fname)

Loading…
Cancel
Save