Skip to content
This repository was archived by the owner on Apr 21, 2023. It is now read-only.

Commit 59a868e

Browse files
authored
Update for rename from MSVCRT to CRT (pvieito#29)
The `CRT` module is identical to `MSVCRT` except it does not expose the `visualc` module. The `MSVCRT` module has been removed to drop the explicit dependency on the `visualc` module. Bump the CI to the 11/04 snapshot. Bump the swift-argument-parser dependency for the Windows changes.
1 parent 175e90e commit 59a868e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/continuous-integration-windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- uses: seanmiddleditch/gha-setup-vsdevenv@master
1717
- name: Install Swift (Swift Toolchain)
1818
run: |
19-
Install-Binary -Url "https://swift.org/builds/development/windows10/swift-DEVELOPMENT-SNAPSHOT-2020-09-22-a/swift-DEVELOPMENT-SNAPSHOT-2020-09-22-a-windows10.exe" -Name "installer.exe" -ArgumentList ("-q")
19+
Install-Binary -Url "https://swift.org/builds/development/windows10/swift-DEVELOPMENT-SNAPSHOT-2020-11-04-a/swift-DEVELOPMENT-SNAPSHOT-2020-11-04-a-windows10.exe" -Name "installer.exe" -ArgumentList ("-q")
2020
echo "::set-env name=SDKROOT::C:\Library\Developer\Platforms\Windows.platform\Developer\SDKs\Windows.sdk"
2121
echo "::set-env name=DEVELOPER_DIR::C:\Library\Developer"
2222
echo "::add-path::C:\Library\Developer\Toolchains\unknown-Asserts-development.xctoolchain\usr\bin;C:\Library\Swift-development\bin;C:\Library\icu-67\usr\bin"

Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ let package = Package(
1616
],
1717
dependencies: [
1818
.package(url: "https://github.com/pvieito/LoggerKit.git", .branch("master")),
19-
.package(url: "https://github.com/apple/swift-argument-parser", .upToNextMajor(from: "0.3.1")),
19+
.package(url: "https://github.com/apple/swift-argument-parser", .branch("main")),
2020
],
2121
targets: [
2222
.target(

PythonKit/PythonLibrary.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import Darwin
1919
#elseif canImport(Glibc)
2020
import Glibc
2121
#elseif os(Windows)
22-
import MSVCRT
22+
import CRT
2323
import WinSDK
2424
#endif
2525

0 commit comments

Comments
 (0)