Skip to content

Commit 47ad258

Browse files
authored
fix test (#278)
1 parent aacf06f commit 47ad258

File tree

7 files changed

+156
-160
lines changed

7 files changed

+156
-160
lines changed

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
<a href="http://envpool.readthedocs.io"><img width="666px" height="auto" src="https://envpool.readthedocs.io/en/latest/_static/envpool-logo.png"></a>
33
</div>
44

5-
65
---
76

87
[![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)

envpool/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
register,
2525
)
2626

27-
__version__ = "0.8.2"
27+
__version__ = "0.8.3"
2828
__all__ = [
2929
"register",
3030
"make",

envpool/workspace1.bzl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@
1414

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

17-
load("@pybind11_bazel//:python_configure.bzl", "python_configure")
18-
load("@rules_foreign_cc//foreign_cc:repositories.bzl", "rules_foreign_cc_dependencies")
1917
load("@com_github_nelhage_rules_boost//:boost/boost.bzl", "boost_deps")
2018
load("@com_justbuchanan_rules_qt//:qt_configure.bzl", "qt_configure")
19+
load("@pybind11_bazel//:python_configure.bzl", "python_configure")
20+
load("@rules_foreign_cc//foreign_cc:repositories.bzl", "rules_foreign_cc_dependencies")
2121

2222
def workspace():
2323
"""Configure pip requirements."""

examples/cleanrl_examples/ppo_atari_envpool.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -146,10 +146,7 @@ def parse_args():
146146
help="the lambda for the general advantage estimation"
147147
)
148148
parser.add_argument(
149-
"--num-minibatches",
150-
type=int,
151-
default=4,
152-
help="the number of mini-batches"
149+
"--num-minibatches", type=int, default=4, help="the number of mini-batches"
153150
)
154151
parser.add_argument(
155152
"--update-epochs",

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = envpool
3-
version = 0.8.2
3+
version = 0.8.3
44
author = "EnvPool Contributors"
55
author_email = "[email protected]"
66
description = "C++-based high-performance parallel environment execution engine (vectorized env) for general RL environments."

third_party/pip_requirements/requirements-dev.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ absl-py
1010
packaging
1111
tqdm
1212
protobuf<=4.20.0
13-
torch!=2.0.0
13+
torch!=2.0.0,!=2.0.1
1414
tianshou>=0.4.10
1515
opencv-python-headless
1616
box2d-py

0 commit comments

Comments
 (0)