Skip to content
This repository was archived by the owner on Sep 18, 2023. It is now read-only.

Add min. Py3 version required #18

Merged
merged 2 commits into from
May 29, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
> I'm doing a survey to figure out the way forward for this library - https://airtable.com/shrJWfd63yBWSJKoI <br/>
> Your feedback is very much appreciated!

<p>
<img alt="PyPI - Python Version" src="https://img.shields.io/pypi/pyversions/cadence-client">
</p>

# 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.
Expand Down
2 changes: 2 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@
],
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We should also be adding a python_requires=">=3.7" to this file, thoughts?

"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
Expand Down