From c00fbb663a0da9b92b1c71fa30e461154355c1c8 Mon Sep 17 00:00:00 2001 From: Steven Morad Date: Tue, 29 Aug 2023 16:24:51 +0200 Subject: [PATCH] Bump release version (#29) * bump release version * Update readme to use pep517 --- README.md | 2 +- setup.cfg | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index f654356..50dd49b 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ Please see the [documentation](https://popgym.readthedocs.io/en/latest/) for adv ```python pip install popgym # base environments only, only requires numpy and gymnasium -pip install "popgym[navigation]" # also include navigation environments, which require mazelib +pip install --use-pep517 "popgym[navigation]" # also include navigation environments, which require mazelib pip install "popgym[baselines]" # environments and memory baselines ``` diff --git a/setup.cfg b/setup.cfg index efab8a4..02e7b38 100644 --- a/setup.cfg +++ b/setup.cfg @@ -4,10 +4,10 @@ description = A collection of partially-observable procedural gym environments long_description = file: README.md long_description_content_type = text/markdown author = Steven Morad -version = 1.0.3 +version = 1.0.4 license = MIT readme = README.md -requires_python = >=3.7 <=3.10 # Remove 3.10 limit when mazelib fixes its build process +requires_python = >=3.7 keywords = gym, gymnasium, pomdp, partially observable, reinforcement learning, rl [options]