Modify ↓
#13748 closed enhancement (duplicate)
Time to use `build` from `setuptools` instead of `distutils`?
| Reported by: | anonymous | Owned by: | |
|---|---|---|---|
| Priority: | normal | Milestone: | |
| Component: | general | Version: | |
| Severity: | normal | Keywords: | |
| Cc: | Branch: | ||
| Release Notes: | |||
| API Changes: | |||
| Internal Changes: | |||
Description
The following feature in setuptools has been deprecated for almost 2 years and is about to be removed:
It might be a good idea to import build directly from setuptools for the following code:
(build is available directly from setuptools, starting on version v62.4.0)
Attachments (0)
Change History (2)
comment:1 by , 19 months ago
| Resolution: | → duplicate |
|---|---|
| Status: | new → closed |
comment:2 by , 19 months ago
It might be a good idea to import
builddirectly from setuptools for the following code:
Incorrect. The code intends to invoke compile_catalog before build_py. See comments above the code.
# 'bdist_wininst' runs a 'build', so make the latter # run a 'compile_catalog' before 'build_py'
Note:
See TracTickets
for help on using tickets.



A duplicate of #13456