From f5c9fa1f80eefce3932b33b66e6eade38b8cc2ec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jes=C3=BAs=20Garc=C3=ADa=20Crespo?= Date: Fri, 8 May 2020 11:02:06 -0700 Subject: [PATCH] Add min. Py3 version required --- README.md | 4 ++++ setup.py | 2 ++ 2 files changed, 6 insertions(+) diff --git a/README.md b/README.md index 99c6226..bece74b 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,7 @@ +

+PyPI - Python Version +

+ # Intro: Fault-Oblivious Stateful Python Code cadence-python allows you to create Python functions that have their state (local variables etc..) implicitly saved such that if the process/machine fails the state of the function is not lost and can resume from where it left off. diff --git a/setup.py b/setup.py index 299424c..a4e51f3 100644 --- a/setup.py +++ b/setup.py @@ -23,6 +23,8 @@ ], classifiers=[ "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", ],