From 372168497513adeabf839bec65d4e7dc05404fc5 Mon Sep 17 00:00:00 2001 From: Jordan Perr-Sauer Date: Mon, 27 Feb 2023 10:55:47 -0700 Subject: [PATCH] Fixing version specification bug in setup.py. You can't specify inequalities on version numbers with an asterisk anymore. --- setup.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index e579dd4f..4dbd672a 100644 --- a/setup.py +++ b/setup.py @@ -21,8 +21,8 @@ "scipy>=1.1.0", "statsmodels>=0.11", "tqdm>=4.28.1", - "matplotlib>=3.6.*", - "bokeh>=2.4.*", + "matplotlib>=3.6", + "bokeh>=2.4", "attrs>=22", "pytz", "pyspark", # TODO: confirm if options required [sql] or [pandas_on_spark] @@ -35,7 +35,7 @@ EXTRAS = { "docs": [ "ipython==8.5.*", - "m2r2>=0.3.*", + "m2r2>=0.3", "Sphinx>=5.0", "pydata-sphinx-theme==0.10.*", "nbmerge==0.0.4",