Skip to content

Commit

Permalink
Bump version to 1.0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
marcharper committed Apr 3, 2019
1 parent b312f97 commit a4bef39
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 12 deletions.
2 changes: 1 addition & 1 deletion LICENSE
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2018 Marc Harper
Copyright (c) 2019 Marc Harper

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -59,7 +59,7 @@ information.

### Pip

You can install the current release (1.0.5) with pip:
You can install the current release (1.0.6) with pip:
```bash
pip install python-ternary
```
Expand Down
3 changes: 2 additions & 1 deletion README.txt
@@ -1 +1,2 @@
This is a plotting library for use with matplotlib to make ternary plots, including heatmaps.
python-ternary is a plotting library for use with matplotlib to make ternary
plots, including heatmaps.
8 changes: 5 additions & 3 deletions setup.py
@@ -1,6 +1,8 @@
import setuptools
from distutils.core import setup

version = "1.0.6"

with open('README.txt') as file:
long_description = file.read()

Expand All @@ -18,9 +20,9 @@

setup(
name="python-ternary",
version="1.0.5",
version=version,
packages=['ternary'],
install_requires=["matplotlib>=1.4"],
install_requires=["matplotlib>=2"],
author="Marc Harper and contributors",
author_email="marc.harper@gmail.com",
classifiers=classifiers,
Expand All @@ -29,5 +31,5 @@
keywords="matplotlib ternary plotting",
license="MIT",
url="https://github.com/marcharper/python-ternary",
download_url="https://github.com/marcharper/python-ternary/tarball/1.0.5",
download_url="https://github.com/marcharper/python-ternary/tarball/{}".format(version),
)
6 changes: 2 additions & 4 deletions ternary/__init__.py
@@ -1,7 +1,5 @@
from matplotlib import pyplot as plt

__version__ = "1.0.5"

from .plotting import (
clear_matplotlib_ticks,
plot,
Expand All @@ -19,8 +17,8 @@
)

from .helpers import project_point

from .colormapping import get_cmap
from .heatmapping import heatmap, heatmapf, svg_heatmap
from .ternary_axes_subplot import figure, TernaryAxesSubplot

from .ternary_axes_subplot import figure, TernaryAxesSubplot
__version__ = "1.0.6"
4 changes: 2 additions & 2 deletions ternary/heatmapping.py
Expand Up @@ -82,7 +82,7 @@ def alt_triangle_coordinates(i, j, k):
def generate_hexagon_deltas():
"""
Generates a dictionary of the necessary additive vectors to generate the
heaxagon points for the haxagonal heatmap.
hexagon points for the hexagonal heatmap.
"""

zero = numpy.array([0, 0, 0])
Expand Down Expand Up @@ -113,7 +113,7 @@ def generate_hexagon_deltas():

def hexagon_coordinates(i, j, k):
"""
Computes coordinates of the constituent hexagons of a heaxagonal heatmap.
Computes coordinates of the constituent hexagons of a hexagonal heatmap.
Parameters
----------
Expand Down

0 comments on commit a4bef39

Please sign in to comment.