Skip to content

Commit 15acec0

Browse files
committed
fix build
1 parent f0224ea commit 15acec0

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/default.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
strategy:
1111
matrix:
1212
os: [windows-latest, macos-latest, macos-14]
13-
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
13+
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13', '3.14']
1414
dist: [bdist_wheel]
1515
steps:
1616
- name: Set up Python ${{ matrix.python-version }}
@@ -46,7 +46,7 @@ jobs:
4646
strategy:
4747
matrix:
4848
os: [windows-latest, macos-latest, macos-14]
49-
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
49+
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13', '3.14']
5050
steps:
5151
- name: Checkout
5252
uses: actions/checkout@v2

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -661,7 +661,7 @@ def download_files(base_url, folder, file_map):
661661
"materialyoucolor.quantize.celebi",
662662
sorted(glob("materialyoucolor/quantize/*.cc")),
663663
extra_compile_args=["-std=c++17"] if os.name != "nt" else ["/std:c++17"],
664-
extra_link_args=["-shared"],
664+
extra_link_args=["-shared"] if platform.system() != "Darwin" else [],
665665
)
666666
if not PURE_PYTHON
667667
else ()

0 commit comments

Comments
 (0)