Skip to content

Commit

Permalink
build: moves the setuptools requirement into the build requirements o…
Browse files Browse the repository at this point in the history
…f the setup script. (#212)
  • Loading branch information
Artanias authored Feb 6, 2025
1 parent e22f5d7 commit 1eb19c2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,11 @@
import sys
from pathlib import Path

from setuptools import Extension, find_packages, setup

BUILD_REQUIREMENTS: tuple[str, ...] = (
"argparse-manpage==3",
"Babel==2.15.0",
"Cython~=3.0.8",
"setuptools~=75.8.0",
)
INSTALL_REQUIREMENTS: tuple[str, ...] = (
"argcomplete~=2.0.0",
Expand Down Expand Up @@ -40,6 +39,7 @@
sys.exit(1)
try:
from Cython.Build import cythonize
from setuptools import Extension, find_packages, setup
except ModuleNotFoundError:
print(
"For the correct build install required build dependencies: "
Expand Down

0 comments on commit 1eb19c2

Please sign in to comment.