From 1b98b13a69643ab6f24f935d597a07069ee4f6fe Mon Sep 17 00:00:00 2001 From: Eric Shaw Date: Tue, 29 Aug 2017 03:28:27 +0800 Subject: [PATCH] making setup follow newer specs --- README.rst | 5 +++-- setup.cfg | 2 ++ setup.py | 2 +- 3 files changed, 6 insertions(+), 3 deletions(-) create mode 100644 setup.cfg diff --git a/README.rst b/README.rst index ad349cb..1d2e2d7 100644 --- a/README.rst +++ b/README.rst @@ -7,7 +7,7 @@ ################# -dicetables v2.4.1 +dicetables v2.4.2 ################# Calculate the Combinations For Any Set of Dice @@ -157,8 +157,9 @@ since v2.2.0 - Improved ExplodingOn speed. - Added `parse_die_within_limits` function to parser. Also added limit values. Changed getters to properties. -from v2.4.0 to v2.4.1 +from v2.4.0 to v2.4.2 - fixed error where `parse_die_within_limits` failed when using default values for dice. +- `parse_die_within_limits` now raises `LimitsError` .. _`The Dice` : http://dice-tables.readthedocs.io/en/latest/the_dice.html diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..3480374 --- /dev/null +++ b/setup.cfg @@ -0,0 +1,2 @@ +[bdist_wheel] +universal=1 \ No newline at end of file diff --git a/setup.py b/setup.py index b971511..a9d65cc 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ def readme(): return f.read() setup(name='dicetables', - version='2.4.1', + version='2.4.2', description='get all combinations for any set of dice', long_description=readme(), keywords='dice, die, statistics, table, probability, combinations',