Skip to content

Commit

Permalink
bump to 1.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jrkerns committed Apr 8, 2016
1 parent d226568 commit 1fb8e7a
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
8 changes: 8 additions & 0 deletions docs/source/changelog.rst
Expand Up @@ -2,6 +2,14 @@
=========
Changelog
=========
V 1.5.1
-------

General Changes
^^^^^^^^^^^^^^^

* Fixed conda entry points so that the user can use pylinac console scripts.
* Moved demo images outside the package to save space. Files are downloaded when relevant methods are invoked.

V 1.5.0
-------
Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Expand Up @@ -76,7 +76,7 @@
# The short X.Y version.
version = '1.5'
# The full version, including alpha/beta/rc tags.
release = '1.5.0'
release = '1.5.1'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
4 changes: 2 additions & 2 deletions pylinac/__init__.py
@@ -1,6 +1,6 @@

__version__ = '1.5.0'
__version_info__ = (1, 5, 0)
__version__ = '1.5.1'
__version_info__ = (1, 5, 1)

import sys
if sys.version_info[0] < 3:
Expand Down
12 changes: 2 additions & 10 deletions setup.py
@@ -1,22 +1,14 @@
from setuptools import setup, find_packages

__version__ = '1.5.0'
__version__ = '1.5.1'


setup(
name='pylinac',
version=__version__,
packages=find_packages(),
package_data={'pylinac':
['watcher_config.yml',
'demo_files/cbct/*',
'demo_files/log_reader/*',
'demo_files/starshot/*',
'demo_files/picket_fence/*',
'demo_files/vmat/*',
'demo_files/flatsym/*',
'demo_files/winston_lutz/*',
'demo_files/planar_imaging/*']}, # http://stackoverflow.com/questions/7522250/how-to-include-package-data-with-setuptools-distribute
['watcher_config.yml',]}, # http://stackoverflow.com/questions/7522250/how-to-include-package-data-with-setuptools-distribute
zip_safe=False, # allows users to view files in egg/distribution
url='https://github.com/jrkerns/pylinac',
keywords='medical physics AAPM TG142 quality assurance starshot cbct vmat dynalog trajectory log',
Expand Down

0 comments on commit 1fb8e7a

Please sign in to comment.