From c67c2adfee3aaec137b7c36e1bdb840112558fb9 Mon Sep 17 00:00:00 2001 From: Kevin Black Date: Thu, 6 Jul 2023 10:28:54 -0700 Subject: [PATCH] Enforce python version --- README.md | 1 + setup.py | 1 + 2 files changed, 2 insertions(+) diff --git a/README.md b/README.md index 623780d..3d0d1c6 100644 --- a/README.md +++ b/README.md @@ -5,6 +5,7 @@ This is an implementation of [Denoising Diffusion Policy Optimization (DDPO)](ht ![DDPO](teaser.jpg) ## Installation +Requires Python 3.10 or newer. ```bash git clone git@github.com:kvablack/ddpo-pytorch.git diff --git a/setup.py b/setup.py index a6d0331..98eb2a9 100644 --- a/setup.py +++ b/setup.py @@ -4,6 +4,7 @@ setup( name="ddpo-pytorch", version="0.0.1", packages=["ddpo_pytorch"], + python_requires=">=3.10", install_requires=[ "ml-collections", "absl-py",