diff --git a/README.md b/README.md index 30af70523211f9a71ee90162afaeb70b929afc72..aa7c5c7f12f0978dc3f660ab837a502a50802dde 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ `predtuner` performs autotuning on program approximation knobs using an error-predictive proxy in place of the original program, to greatly speedup autotuning while getting results -comparable in quality. `current_version == 0.1`. +comparable in quality. `current_version == 0.3`. ## Requirements diff --git a/setup.py b/setup.py index 87902831ed7cf1f869f1c4e5494b91c8e7e1c3ae..3377b9ce5084c3f82ba1d8bf28903eb462ec44ae 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ with open("README.md", "r", encoding="utf-8") as fh: setuptools.setup( name="predtuner", - version="0.1", + version="0.3", author="Yifan Zhao", author_email="yifanz16@illinois.edu", description="A package for predictive and empirical approximation autotuning", @@ -22,8 +22,8 @@ setuptools.setup( "pandas>=1.1", "jsonpickle>=1.5", "argparse>=1.4", - "wheel", # Use wheel to build the following: + "wheel", # Use wheel to build the following: "opentuner==0.8.3", # Must be 0.8.3, they fixed an important bug - "sqlalchemy==1.3" - ] + "sqlalchemy==1.3", + ], )