Skip to content

Commit

Permalink
Version 0.0.7; tweaks and bug fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
vthorsteinsson committed Oct 19, 2019
1 parent 5b7da72 commit 55efb8c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 8 deletions.
11 changes: 5 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)


Expand All @@ -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")),
Expand All @@ -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",
Expand Down
4 changes: 2 additions & 2 deletions src/straeto/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"

0 comments on commit 55efb8c

Please sign in to comment.