diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index a5b33d7f9..e2126e38c 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -10,6 +10,7 @@ repos: - id: codespell args: - --skip=*.css,*.js,*.map,*.scss,*svg + - --ignore-words-list=magent - repo: https://gitlab.com/PyCQA/flake8 rev: 5.0.4 hooks: diff --git a/pettingzoo/magent/README.md b/pettingzoo/magent/README.md new file mode 100644 index 000000000..d0c8fbec4 --- /dev/null +++ b/pettingzoo/magent/README.md @@ -0,0 +1 @@ +MAgent has been moved into its own package: MAgent2. Install with `pip install magent2`. For more information on the MAgent2 package, see https://magent2.farama.org/. diff --git a/pettingzoo/magent/__init__.py b/pettingzoo/magent/__init__.py new file mode 100644 index 000000000..fd7f4c1ea --- /dev/null +++ b/pettingzoo/magent/__init__.py @@ -0,0 +1,3 @@ +raise ImportError( + "MAgent has been moved into its own package: MAgent2. Install with `pip install magent2`. For more information on the MAgent2 package, see https://magent2.farama.org/." +)