Skip to content

Commit

Permalink
REL: Bump version strings for release (#713)
Browse files Browse the repository at this point in the history
* REL: Bump version strings for release

* STY: Fix PEP8 error
  • Loading branch information
ElDeveloper authored and antgonza committed Apr 19, 2019
1 parent 9e98932 commit aa675d2
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions doc/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,10 +65,10 @@
# built documents.
#
# The short X.Y version.
version = '1.0.0beta18-dev'
version = '1.0.0beta19'

# The full version, including alpha/beta/rc tags.
release = '1.0.0beta18-dev'
release = '1.0.0beta19'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
8 changes: 4 additions & 4 deletions emperor/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -371,10 +371,10 @@ def preprocess_coords_file(coords_header, coords_data, coords_eigenvals,
clones = 0

if custom_axes and type(coords_data) == np.ndarray:
# sequence ported from qiime/scripts/make_3d_plots.py @ 9115351
get_custom_coords(custom_axes, mapping_file, coords_file)
remove_nans(coords_file)
scale_custom_coords(custom_axes, coords_file)
# sequence ported from qiime/scripts/make_3d_plots.py @ 9115351
get_custom_coords(custom_axes, mapping_file, coords_file)
remove_nans(coords_file)
scale_custom_coords(custom_axes, coords_file)
elif type(coords_data) == list and not is_comparison:
# take the first pcoa file as the master set of coordinates
master_pcoa = [coords_header[0], coords_data[0],
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

from setuptools import setup, find_packages

__version__ = "1.0.0beta18-dev"
__version__ = "1.0.0beta19"
__maintainer__ = "Emperor development team"
__email__ = "[email protected]"

Expand Down

0 comments on commit aa675d2

Please sign in to comment.