Skip to content

Commit a4bef39

Browse files
committed
Bump version to 1.0.6
1 parent b312f97 commit a4bef39

File tree

6 files changed

+13
-12
lines changed

6 files changed

+13
-12
lines changed

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2018 Marc Harper
3+
Copyright (c) 2019 Marc Harper
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ information.
5959

6060
### Pip
6161

62-
You can install the current release (1.0.5) with pip:
62+
You can install the current release (1.0.6) with pip:
6363
```bash
6464
pip install python-ternary
6565
```

README.txt

+2-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
This is a plotting library for use with matplotlib to make ternary plots, including heatmaps.
1+
python-ternary is a plotting library for use with matplotlib to make ternary
2+
plots, including heatmaps.

setup.py

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
import setuptools
22
from distutils.core import setup
33

4+
version = "1.0.6"
5+
46
with open('README.txt') as file:
57
long_description = file.read()
68

@@ -18,9 +20,9 @@
1820

1921
setup(
2022
name="python-ternary",
21-
version="1.0.5",
23+
version=version,
2224
packages=['ternary'],
23-
install_requires=["matplotlib>=1.4"],
25+
install_requires=["matplotlib>=2"],
2426
author="Marc Harper and contributors",
2527
author_email="[email protected]",
2628
classifiers=classifiers,
@@ -29,5 +31,5 @@
2931
keywords="matplotlib ternary plotting",
3032
license="MIT",
3133
url="https://github.com/marcharper/python-ternary",
32-
download_url="https://github.com/marcharper/python-ternary/tarball/1.0.5",
34+
download_url="https://github.com/marcharper/python-ternary/tarball/{}".format(version),
3335
)

ternary/__init__.py

+2-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
from matplotlib import pyplot as plt
22

3-
__version__ = "1.0.5"
4-
53
from .plotting import (
64
clear_matplotlib_ticks,
75
plot,
@@ -19,8 +17,8 @@
1917
)
2018

2119
from .helpers import project_point
22-
2320
from .colormapping import get_cmap
2421
from .heatmapping import heatmap, heatmapf, svg_heatmap
22+
from .ternary_axes_subplot import figure, TernaryAxesSubplot
2523

26-
from .ternary_axes_subplot import figure, TernaryAxesSubplot
24+
__version__ = "1.0.6"

ternary/heatmapping.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ def alt_triangle_coordinates(i, j, k):
8282
def generate_hexagon_deltas():
8383
"""
8484
Generates a dictionary of the necessary additive vectors to generate the
85-
heaxagon points for the haxagonal heatmap.
85+
hexagon points for the hexagonal heatmap.
8686
"""
8787

8888
zero = numpy.array([0, 0, 0])
@@ -113,7 +113,7 @@ def generate_hexagon_deltas():
113113

114114
def hexagon_coordinates(i, j, k):
115115
"""
116-
Computes coordinates of the constituent hexagons of a heaxagonal heatmap.
116+
Computes coordinates of the constituent hexagons of a hexagonal heatmap.
117117
118118
Parameters
119119
----------

0 commit comments

Comments
 (0)