Skip to content

Commit

Permalink
fix test (#278)
Browse files Browse the repository at this point in the history
  • Loading branch information
Trinkle23897 authored Sep 7, 2023
1 parent aacf06f commit 47ad258
Show file tree
Hide file tree
Showing 7 changed files with 156 additions and 160 deletions.
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
<a href="http://envpool.readthedocs.io"><img width="666px" height="auto" src="https://envpool.readthedocs.io/en/latest/_static/envpool-logo.png"></a>
</div>


---

[![PyPI](https://img.shields.io/pypi/v/envpool)](https://pypi.org/project/envpool/) [![Downloads](https://static.pepy.tech/personalized-badge/envpool?period=total&units=international_system&left_color=grey&right_color=orange&left_text=PyPI%20Download)](https://pepy.tech/project/envpool) [![arXiv](https://img.shields.io/badge/arXiv-2206.10558-b31b1b.svg)](https://arxiv.org/abs/2206.10558) [![Read the Docs](https://img.shields.io/readthedocs/envpool)](https://envpool.readthedocs.io/) [![Unittest](https://github.com/sail-sg/envpool/workflows/Bazel%20Build%20and%20Test/badge.svg?branch=main)](https://github.com/sail-sg/envpool/actions) [![GitHub issues](https://img.shields.io/github/issues/sail-sg/envpool)](https://github.com/sail-sg/envpool/issues) [![GitHub stars](https://img.shields.io/github/stars/sail-sg/envpool)](https://github.com/sail-sg/envpool/stargazers) [![GitHub forks](https://img.shields.io/github/forks/sail-sg/envpool)](https://github.com/sail-sg/envpool/network) [![GitHub license](https://img.shields.io/github/license/sail-sg/envpool)](https://github.com/sail-sg/envpool/blob/main/LICENSE)
Expand Down
2 changes: 1 addition & 1 deletion envpool/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
register,
)

__version__ = "0.8.2"
__version__ = "0.8.3"
__all__ = [
"register",
"make",
Expand Down
4 changes: 2 additions & 2 deletions envpool/workspace1.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@

"""EnvPool workspace initialization, load after workspace0."""

load("@pybind11_bazel//:python_configure.bzl", "python_configure")
load("@rules_foreign_cc//foreign_cc:repositories.bzl", "rules_foreign_cc_dependencies")
load("@com_github_nelhage_rules_boost//:boost/boost.bzl", "boost_deps")
load("@com_justbuchanan_rules_qt//:qt_configure.bzl", "qt_configure")
load("@pybind11_bazel//:python_configure.bzl", "python_configure")
load("@rules_foreign_cc//foreign_cc:repositories.bzl", "rules_foreign_cc_dependencies")

def workspace():
"""Configure pip requirements."""
Expand Down
5 changes: 1 addition & 4 deletions examples/cleanrl_examples/ppo_atari_envpool.py
Original file line number Diff line number Diff line change
Expand Up @@ -146,10 +146,7 @@ def parse_args():
help="the lambda for the general advantage estimation"
)
parser.add_argument(
"--num-minibatches",
type=int,
default=4,
help="the number of mini-batches"
"--num-minibatches", type=int, default=4, help="the number of mini-batches"
)
parser.add_argument(
"--update-epochs",
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = envpool
version = 0.8.2
version = 0.8.3
author = "EnvPool Contributors"
author_email = "[email protected]"
description = "C++-based high-performance parallel environment execution engine (vectorized env) for general RL environments."
Expand Down
2 changes: 1 addition & 1 deletion third_party/pip_requirements/requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ absl-py
packaging
tqdm
protobuf<=4.20.0
torch!=2.0.0
torch!=2.0.0,!=2.0.1
tianshou>=0.4.10
opencv-python-headless
box2d-py
Expand Down
Loading

0 comments on commit 47ad258

Please sign in to comment.