From c16b3d89a380b147ff6da737e5d28659209ba85a Mon Sep 17 00:00:00 2001 From: Mark Turner Date: Thu, 29 Feb 2024 15:41:53 +0100 Subject: [PATCH] Fix long description error --- setup.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/setup.py b/setup.py index bea6b71e6..099bb66fd 100644 --- a/setup.py +++ b/setup.py @@ -101,6 +101,9 @@ if use_cython: extensions = cythonize(extensions, compiler_directives={"language_level": 3, "linetrace": on_github_actions}) +with open("README.md") as f: + long_description = f.read() + setup( name="PySCIPOpt", version="5.0.0",