diff --git a/setup.cfg b/setup.cfg index e885a01..395a1f4 100644 --- a/setup.cfg +++ b/setup.cfg @@ -32,6 +32,7 @@ classifiers = License :: OSI Approved :: MIT License Programming Language :: Python Programming Language :: Python :: 3 + Programming Language :: Python :: 3.6 Programming Language :: Python :: 3.7 Programming Language :: Python :: 3.8 Programming Language :: Python :: 3.9 @@ -40,7 +41,7 @@ classifiers = [options] packages = find: -python_requires = >= 3.7 +python_requires = >= 3.6 install_requires = click requests diff --git a/waybackpy/__init__.py b/waybackpy/__init__.py index 1f4661a..08ead46 100644 --- a/waybackpy/__init__.py +++ b/waybackpy/__init__.py @@ -1,6 +1,6 @@ """Module initializer and provider of static information.""" -__version__ = "3.0.4" +__version__ = "3.0.5" from .availability_api import WaybackMachineAvailabilityAPI from .cdx_api import WaybackMachineCDXServerAPI