From 36a9d3644721656d9a6abfa459c937de9eb41ca8 Mon Sep 17 00:00:00 2001 From: spencerfolk Date: Thu, 21 Dec 2023 10:40:59 -0500 Subject: [PATCH] Fixed setup script. Increased version number. --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index dd73835..a9025e9 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ packages = list(filter(isdir, all_packages)) setup( name='rotorpy', packages=packages, - version='1.0.1', + version='1.1.0', install_requires=[ 'cvxopt', 'matplotlib', @@ -19,5 +19,5 @@ setup( 'pandas', 'ndsplines', 'timeout_decorator', - 'tqdm' + 'tqdm', 'gymnasium'])