Skip to content

Commit

Permalink
Fix PettingZoo's implicit required dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
laszukdawid committed Aug 22, 2021
1 parent 39a1340 commit 325db05
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion ai_traineree/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import numpy
import torch

__version__ = "0.3.3"
__version__ = "0.3.4"


# This is expected to be safe, although in PyTorch 1.7 it comes as a warning,
Expand Down
6 changes: 3 additions & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = ai-traineree
version = 0.3.3
version = 0.3.4
author = Dawid Laszuk
author_email = [email protected]
description = Yet another zoo of (Deep) Reinforcment Learning methods in Python using PyTorch
Expand Down Expand Up @@ -36,14 +36,14 @@ test =
pytest-mock~=3.3
flake8~=3.9
gym[box2d]~=0.19.0
pettingzoo[sisl]==1.8.*
pettingzoo[sisl,other]==1.11.* # `other` is needed because PettingZoo requires but doesn't add pillow
# Loggers
tensorboard = tensorboard
neptune = neptune-client; psutil
# Envs
gym = gym[all]==0.19.0
mlagents = mlagents
pettingzoo = pettingzoo==1.8.*
pettingzoo[other] = pettingzoo==1.11.0 # `other` is needed because PettingZoo requires but doesn't add pillow
examples =
matplotlib
tensorboard
Expand Down

0 comments on commit 325db05

Please sign in to comment.