From 67a597e8e1b3c16ec06e819a5859c8a765ac2ce2 Mon Sep 17 00:00:00 2001 From: Marc Harper Date: Wed, 17 Feb 2021 10:18:52 -0800 Subject: [PATCH] Bump version to 1.0.8 --- LICENSE | 2 +- setup.py | 5 +++-- ternary/__init__.py | 2 +- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/LICENSE b/LICENSE index 8477c1a..75280db 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2019 Marc Harper +Copyright (c) 2015-2021 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 diff --git a/setup.py b/setup.py index 1f94c1c..ff47c9c 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ import setuptools from distutils.core import setup -version = "1.0.7" +version = "1.0.8" with open('README.txt') as file: long_description = file.read() @@ -12,9 +12,10 @@ "License :: OSI Approved :: MIT License", "Natural Language :: English", "Programming Language :: Python", - "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", "Topic :: Scientific/Engineering :: Visualization" ] diff --git a/ternary/__init__.py b/ternary/__init__.py index af5bcf2..941fbb7 100644 --- a/ternary/__init__.py +++ b/ternary/__init__.py @@ -21,4 +21,4 @@ from .heatmapping import heatmap, heatmapf, svg_heatmap from .ternary_axes_subplot import figure, TernaryAxesSubplot -__version__ = "1.0.7" +__version__ = "1.0.8"