diff options
author | Jake Hunsaker <jhunsake@redhat.com> | 2023-01-12 12:53:16 -0500 |
---|---|---|
committer | Jake Hunsaker <jhunsake@redhat.com> | 2023-01-16 12:43:57 -0500 |
commit | ac17ca4f460b67f438f3bef7b4eacc2c133a7643 (patch) | |
tree | 8bd8d42ded1295bfbd349c9e74a5258e3e9a3dc5 /requirements.txt | |
parent | c01b85af05db437275d3ef40810a40ab31b05033 (diff) | |
download | sos-ac17ca4f460b67f438f3bef7b4eacc2c133a7643.tar.gz |
[build] Convert to setuptools
In python 3.12 distutils will be removed. As such, we need to update to
the replacement `setuptools`.
This commit makes the basic change over in `setup.py`, so that an
`sdist` source tarball can be generated. Note that while this source
tarball will still have the `.po` files in it any build tarball
(`bdist`) produced via the new `setup.py` will *not* have `.mo`
translation files compiled and included at this point.
In reviewing this change, it was found that our internationalization is
currently broken and very out of date. Future work will focus on fixing
that situation, but for now the immediate packaging needs are being
addressed.
Resolves: #3093
Signed-off-by: Jake Hunsaker <jhunsake@redhat.com>
Diffstat (limited to 'requirements.txt')
-rw-r--r-- | requirements.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/requirements.txt b/requirements.txt index 39f42161..00c5982d 100644 --- a/requirements.txt +++ b/requirements.txt @@ -3,3 +3,4 @@ coverage>=4.0.3 Sphinx>=1.3.5 pexpect>=4.0.0 pyyaml +setuptools |