Skip to content

Commit

Permalink
Release 0.1.14
Browse files Browse the repository at this point in the history
  • Loading branch information
micktwomey committed Feb 5, 2021
1 parent 4b463eb commit c015739
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -104,8 +104,8 @@ Python 2.5 is not supported (too old for the tests for the most part). It could
Changes
=======

Unreleased
----------
0.1.14
------

* Add GitHub build actions for project
* Add project URLs in setup.py (thanks to Steve Piercy)
Expand Down
12 changes: 8 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,20 +5,24 @@
except ImportError:
from distutils import setup

long_description = open(os.path.join(os.path.dirname(__file__), "README.rst"), "rb").read().decode("UTF-8")
long_description = (
open(os.path.join(os.path.dirname(__file__), "README.rst"), "rb")
.read()
.decode("UTF-8")
)

setup(
name="iso8601",
version="0.1.14-dev1",
version="0.1.14",
description=long_description.split("\n")[0],
long_description=long_description,
long_description_content_type="text/x-rst",
author="Michael Twomey",
author_email="[email protected]",
url="https://github.com/micktwomey/pyiso8601",
project_urls={
'Documentation': "https://pyiso8601.readthedocs.org/",
'Issue Tracker': 'https://github.com/micktwomey/pyiso8601/issues',
"Documentation": "https://pyiso8601.readthedocs.org/",
"Issue Tracker": "https://github.com/micktwomey/pyiso8601/issues",
},
packages=["iso8601"],
license="MIT",
Expand Down

0 comments on commit c015739

Please sign in to comment.