Skip to content

Commit

Permalink
fix(setup): Switch to setuptools.command.build (#11568)
Browse files Browse the repository at this point in the history
* Uses build from setuptools.command.build instead of distutils.command.build

Fixes #11460.
  • Loading branch information
SanjaySiddharth committed May 6, 2024
1 parent cef43c1 commit 1c3fa77
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@

import os
from distutils import log
from distutils.command.build import build
from distutils.core import Command
from glob import glob
from itertools import chain

from setuptools import setup
from setuptools.command.build import build
from setuptools.command.build_py import build_py
from setuptools.modified import newer
from translate.tools.pocompile import convertmo
Expand Down

0 comments on commit 1c3fa77

Please sign in to comment.