We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 71cf02c commit ac629c5Copy full SHA for ac629c5
pkgs/sagemath-standard/setup.py
@@ -24,6 +24,11 @@
24
except ImportError:
25
pass
26
27
+# Different workaround: disable `walk_revctrl` in setuptools
28
+# This is needed for setuptools_scm >= 8, should work for any version
29
+import setuptools.command.egg_info
30
+setuptools.command.egg_info.walk_revctrl = lambda: ()
31
+
32
#########################################################
33
### Set source directory
34
0 commit comments