Skip to content
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: 3 additions & 1 deletion .github/workflows/publish-testpypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -143,11 +143,13 @@ jobs:
python -m venv .testpypi-verify
. .testpypi-verify/bin/activate
python -m pip install --upgrade pip
python -m pip install --index-url https://pypi.org/simple/ dist/*.whl
python -m pip uninstall -y openenv

for attempt in 1 2 3 4 5; do
if python -m pip install \
--no-deps \
--index-url https://test.pypi.org/simple/ \
--extra-index-url https://pypi.org/simple/ \
"openenv==${{ needs.build.outputs.version }}"; then
break
fi
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "openenv"
version = "0.3.2.dev0"
version = "0.4.0"
description = "A unified framework for reinforcement learning environments"
readme = "README.md"
license = "BSD-3-Clause"
Expand Down
Loading