Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions build.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

import os
import shutil
import platform

from pathlib import Path

Expand All @@ -11,8 +10,6 @@
from setuptools import Extension
from setuptools.command.build_ext import build_ext

COMPILE_ARGS = ["-O3"]

LINK_ARGS: list[str] = []
INCLUDE_DIRS: list[str] = []
LIBRARIES: list[str] = []
Expand All @@ -23,7 +20,6 @@ def build() -> None:
Extension(
"*",
["rencode/*.pyx"],
extra_compile_args=COMPILE_ARGS,
extra_link_args=LINK_ARGS,
include_dirs=INCLUDE_DIRS,
libraries=LIBRARIES,
Expand Down