Enforce python version

This commit is contained in:
Kevin Black 2023-07-06 10:28:54 -07:00
parent 64a20bc01d
commit c67c2adfee
2 changed files with 2 additions and 0 deletions

View File

@ -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

View File

@ -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",