From 686ae7e68eb3750fae42a5ce7d1b47a53be0cf11 Mon Sep 17 00:00:00 2001 From: Phobetor1999 <89788249+Phobetor1999@users.noreply.github.com> Date: Tue, 24 Jan 2023 19:19:29 +0100 Subject: [PATCH] Update setup.cfg MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Due to this error trying to install the fasttext package on Python 3.10 Running setup.py install for fasttext did not run successfully. │ exit code: 1 ╰─> [20 lines of output] C:\Program Files\Python310\lib\site-packages\setuptools\dist.py:697: UserWarning: Usage of dash-separated 'description-file' will not be supported in future versions. Please use the underscore name 'description_file' instead --- setup.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index b88034e41..08aedd7e6 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,2 +1,2 @@ [metadata] -description-file = README.md +description_file = README.md