Skip to content

Commit a493f27

Browse files
v0.1.13
1 parent 61053da commit a493f27

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

coax/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = '0.1.12'
1+
__version__ = '0.1.13'
22

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

doc/release_notes.rst

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,14 @@ Upcoming
1515
- ...
1616

1717

18+
v0.1.13
19+
-------
20+
21+
- Switch from legacy ``gym`` to ``gymnasium`` (`#21 <https://github.com/coax-dev/coax/issues/21>`_)
22+
- Upgrade dependencies.
23+
24+
25+
1826
v0.1.12
1927
-------
2028

0 commit comments

Comments
 (0)