From c03f99f3ef2db0cd61f9bf3813492cd9fda9ce79 Mon Sep 17 00:00:00 2001 From: Sam Estep Date: Wed, 7 Jul 2021 12:44:21 -0700 Subject: [PATCH] Remove pyproject.toml (#61367) Summary: This reverts https://github.com/pytorch/pytorch/issues/60408, since it doesn't really give much benefit, and it ended up breaking things: - https://github.com/pytorch/pytorch/issues/60665 - https://github.com/pytorch/pytorch/pull/60408#issuecomment-873979383 Pull Request resolved: https://github.com/pytorch/pytorch/pull/61367 Reviewed By: malfet, janeyx99 Differential Revision: D29593886 Pulled By: samestep fbshipit-source-id: b1ba0ac7695e3eacf66a35e293080e8a1240efca --- .isort.cfg | 6 ++++++ pyproject.toml | 12 ------------ 2 files changed, 6 insertions(+), 12 deletions(-) create mode 100644 .isort.cfg delete mode 100644 pyproject.toml diff --git a/.isort.cfg b/.isort.cfg new file mode 100644 index 000000000000..d14d9bf207e6 --- /dev/null +++ b/.isort.cfg @@ -0,0 +1,6 @@ +[settings] +include_trailing_comma=True +multi_line_output=3 +skip=third_party +skip_gitignore=True +use_parentheses=True diff --git a/pyproject.toml b/pyproject.toml deleted file mode 100644 index e18b237db50f..000000000000 --- a/pyproject.toml +++ /dev/null @@ -1,12 +0,0 @@ -[build-system] -requires = ["setuptools", "wheel"] -build-backend = "setuptools.build_meta" - -[tool.isort] -include_trailing_comma = true -multi_line_output = 3 -skip = [ - "third_party", -] -skip_gitignore = true -use_parentheses = true