Gym Notices

0.1.0 · active · verified Fri Apr 10

gym-notices is a Python library that provides important advisories and warnings for the original Gym (OpenAI Gym) reinforcement learning toolkit. These notices may be displayed automatically upon importing Gym on internet-connected systems, informing users about major reproducibility issues, outdated versions, or the library's maintenance status. It is currently at version 0.1.0 and releases are infrequent, primarily focused on issuing critical warnings.

Warnings

Install

Imports

Quickstart

Simply importing `gym_notices` or `gym` (if `gym_notices` is a dependency of `gym`) triggers the notice system. Warnings are displayed automatically if relevant conditions (like using an unsupported Gym version or Gym's deprecation) are detected and an internet connection is available to fetch the latest advisories.

import gym_notices

# When specific conditions (e.g., outdated Gym version, internet connectivity)
# are met, warnings from gym-notices will be printed to stdout upon import.

view raw JSON →