1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
Description: use setuptools instead of distutils
distutils has been removed in Python 3.12
Author: Thibaut Paumard <thibaut@debian.org>
Origin: vendor
Bug: https://github.com/LLNL/pyorick/issues/9
Last-Update: 2025-09-11
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/setup.py
+++ b/setup.py
@@ -1,7 +1,7 @@
#!/usr/bin/env python
from __future__ import print_function
-from distutils.core import setup, Command
+from setuptools import setup, Command
class TestCommand(Command):
description = "PYorick test/check command"
|