Skip to content

Commit 5942c8b

Browse files
committed
wheels: product instead of target
1 parent 7e9faff commit 5942c8b

3 files changed

Lines changed: 3 additions & 2 deletions

File tree

.github/workflows/wheels.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,7 @@ jobs:
9090
CIBW_BEFORE_ALL: |
9191
if command -v dnf > /dev/null; then
9292
dnf install -y https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm
93+
dnf --enablerepo=powertools install -y libstdc++-static
9394
dnf install -y swift-lang
9495
fi
9596
CIBW_ENVIRONMENT: ""

Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ let package = Package(
1212
// Dependencies declare other packages that this package depends on.
1313
.package(
1414
url: "https://github.com/apple/swift-collections.git", .upToNextMajor(from: "1.0.0")),
15-
.package(url: "https://github.com/pvieito/PythonKit", .exact("0.4.2")),
15+
.package(url: "https://github.com/pvieito/PythonKit", exact: "0.4.2"),
1616
.package(url: "https://github.com/donn/Defile.git", from: "5.2.1"),
1717
.package(url: "https://github.com/attaswift/BigInt.git", from: "5.2.1"),
1818
.package(url: "https://github.com/jpsim/Yams.git", from: "5.0.6"),

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ def custom_build(self, bext: build_ext):
5151
"-c",
5252
"release",
5353
*(["--static-swift-stdlib"] * (platform.system() != "Darwin")),
54-
"--target",
54+
"--product",
5555
"fault",
5656
"--show-bin-path"
5757
]

0 commit comments

Comments
 (0)