Skip to content

Commit

Permalink
v0.1.13
Browse files Browse the repository at this point in the history
  • Loading branch information
KristianHolsheimer committed Feb 1, 2023
1 parent 61053da commit a493f27
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
4 changes: 2 additions & 2 deletions coax/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = '0.1.12'
__version__ = '0.1.13'

# fall back to legacy gym if gymnasium is unavailable
try:
Expand All @@ -7,7 +7,7 @@
import sys
import warnings
warnings.warn("Cannot import 'gymnasium'; attempting to fall back to legacy 'gym'.")
import gym as _gymnasium
import gym as _gymnasium # Don't catch ImportError here; we need gymnasium or gym.
sys.modules['gymnasium'] = _gymnasium
del sys, warnings # Keep namespace clean.

Expand Down
8 changes: 8 additions & 0 deletions doc/release_notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,14 @@ Upcoming
- ...


v0.1.13
-------

- Switch from legacy ``gym`` to ``gymnasium`` (`#21 <https://github.com/coax-dev/coax/issues/21>`_)
- Upgrade dependencies.



v0.1.12
-------

Expand Down

0 comments on commit a493f27

Please sign in to comment.