From 049e45cb0907f8b841ada5d16c0401378a524742 Mon Sep 17 00:00:00 2001 From: Dominik Roth Date: Mon, 23 Oct 2023 14:51:21 +0200 Subject: [PATCH] Print warning when setup.py is still used. --- setup.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/setup.py b/setup.py index 09ea286..d55fefc 100644 --- a/setup.py +++ b/setup.py @@ -6,6 +6,8 @@ from typing import List from setuptools import setup, find_packages +print('[!] You are currently installing/building fancy_gym via setup.py. This is only provided for backwards-compatability. Please use the pyproject.toml instead.') + # Environment-specific dependencies for dmc and metaworld extras = { 'dmc': ['shimmy[dm-control]', 'Shimmy==1.0.0'],