Skip to content

Commit

Permalink
Release v1.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
francisco-dlp committed May 27, 2020
1 parent a18640d commit ddae273
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 9 deletions.
2 changes: 1 addition & 1 deletion link_traits/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
"""

__version__ = "1.0.2"
__version__ = "1.0.3"

from .link_traits import link, dlink, has_traits, has_traitlets
12 changes: 4 additions & 8 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,24 +11,20 @@
here = path.abspath(path.dirname(__file__))

# Get the long description from the README file
try:
import pypandoc
long_description = pypandoc.convert('README.md', 'rst')
except ImportError:
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()

with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='link_traits',

# Versions should comply with PEP440. For a discussion on single-sourcing
# the version across setup.py and the project code, see
# https://packaging.python.org/en/latest/single_source_version.html
version='1.0.2',
version='1.0.3',

description=('A fork to traitlets\' link and dlink to link traits in '
'addition to traitlets.'),
long_description=long_description,
long_description_content_type="text/markdown",

# The project's main homepage.
url='https://github.com/hyperspy/link_traits',
Expand Down

0 comments on commit ddae273

Please sign in to comment.