Skip to content

Commit

Permalink
Version 1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
vthorsteinsson committed Jul 20, 2021
1 parent aa5c448 commit d4f2a2a
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,11 @@ package to fetch real-time data.

## Release history

* Release **1.3.0**

Added type annotations; fixed Python 3.6 compatibility
regression.

* Release **1.2.0**

Updated and hardened the code that reads Strætó.bs' XML configuration file.
Expand Down
9 changes: 4 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@
from __future__ import unicode_literals

import io
import re
import sys

from glob import glob
Expand All @@ -40,8 +39,8 @@
from setuptools import setup


if sys.version_info < (3, 5):
print("Straeto requires Python >= 3.5")
if sys.version_info < (3, 6):
print("Straeto requires Python >= 3.6")
sys.exit(1)


Expand All @@ -58,7 +57,7 @@ def read(*names, **kwargs):
setup(
name="straeto",
# Remember to modify version number in src/straeto/__init__.py as well
version="1.2.0",
version="1.3.0",
license="GNU GPLv3",
description="A package for information about buses and bus routes",
long_description="{0}\n".format(read("README.md")),
Expand All @@ -83,10 +82,10 @@ def read(*names, **kwargs):
"Natural Language :: Icelandic",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development :: Libraries :: Python Modules",
Expand Down
2 changes: 1 addition & 1 deletion src/straeto/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,4 +49,4 @@
__author__ = "Miðeind ehf."
__copyright__ = "(C) 2021 Miðeind ehf."
# Remember to update the version in setup.py as well
__version__ = "1.2.0"
__version__ = "1.3.0"

0 comments on commit d4f2a2a

Please sign in to comment.