diff --git a/setup.py b/setup.py index 4961ae1..757b833 100644 --- a/setup.py +++ b/setup.py @@ -40,8 +40,8 @@ from setuptools import setup -if sys.version_info < (3, 4): - print("Straeto requires Python >= 3.4") +if sys.version_info < (3, 5): + print("Straeto requires Python >= 3.5") sys.exit(1) @@ -57,9 +57,8 @@ def read(*names, **kwargs): setup( name="straeto", - # Remember to modify version numbers in - # doc/conf.py and src/straeto/__init__.py as well - version="0.0.6", + # Remember to modify version number in src/straeto/__init__.py as well + version="0.0.7", license="GNU GPLv3", description="A package for information about buses and bus routes", long_description="{0}\n".format(read("README.md")), @@ -84,10 +83,10 @@ def read(*names, **kwargs): "Natural Language :: Icelandic", "Programming Language :: Python", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", "Topic :: Software Development :: Libraries :: Python Modules", diff --git a/src/straeto/__init__.py b/src/straeto/__init__.py index 87d06c3..f230ea0 100644 --- a/src/straeto/__init__.py +++ b/src/straeto/__init__.py @@ -46,6 +46,6 @@ __author__ = "Miðeind ehf." __copyright__ = "(C) 2019 Miðeind ehf." -# Remember to update the version in doc/conf.py as well -__version__ = "0.0.5" +# Remember to update the version in setup.py as well +__version__ = "0.0.7"