The Swift Package Index logo.Swift Package Index

Has it really been five years since Swift Package Index launched? Read our anniversary blog post!

Build Information

Successful build of open-weather-kit, reference 1.2.0 (915f7a), with Swift 6.2 (beta) for macOS (SPM) on 23 Jun 2025 03:39:44 UTC.

Swift 6 data race errors: 0

Build Command

env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64

Build Log

========================================
RunAll
========================================
Builder version: 4.64.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/jagreenwood/open-weather-kit.git
Reference: 1.2.0
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/jagreenwood/open-weather-kit
 * tag               1.2.0      -> FETCH_HEAD
HEAD is now at 915f7a0 Concurrency Updates (#37)
Cloned https://github.com/jagreenwood/open-weather-kit.git
Revision (git rev-parse @):
915f7a00285c74edfbf4beabc456b78c5f9f3069
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/jagreenwood/open-weather-kit.git at 1.2.0
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.2
Building package at path:  $PWD
https://github.com/jagreenwood/open-weather-kit.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64
Building for debugging...
[0/4] Copying Info.plist
[0/4] Write sources
[0/4] Copying Localizable.strings
[3/4] Write swift-version-1EA4D86E10B52AF.txt
[5/54] Emitting module OpenWeatherKit
/Users/admin/builder/spi-builder-workspace/Sources/OpenWeatherKit/Internal/Extensions/Sendable+Compat.swift:10:28: warning: conformance of 'Date' to protocol 'Sendable' was already stated in the type's module 'Foundation'
 8 | import Foundation
 9 |
10 | extension Date: @unchecked Sendable {}
   |                            `- warning: conformance of 'Date' to protocol 'Sendable' was already stated in the type's module 'Foundation'
11 | extension Measurement: @unchecked Sendable {}
12 | extension URL: @unchecked Sendable {}
Foundation.Date:2:15: note: 'Date' declares conformance to protocol 'Sendable' here
 1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
 2 | public struct Date : Comparable, Hashable, Equatable, Sendable {
   |               `- note: 'Date' declares conformance to protocol 'Sendable' here
 3 |     public static let timeIntervalBetween1970AndReferenceDate: Double
 4 |     public static var timeIntervalSinceReferenceDate: TimeInterval { get }
/Users/admin/builder/spi-builder-workspace/Sources/OpenWeatherKit/Internal/Extensions/Sendable+Compat.swift:11:35: warning: conformance of 'Measurement<UnitType>' to protocol 'Sendable' was already stated in the type's module 'Foundation'
 9 |
10 | extension Date: @unchecked Sendable {}
11 | extension Measurement: @unchecked Sendable {}
   |                                   `- warning: conformance of 'Measurement<UnitType>' to protocol 'Sendable' was already stated in the type's module 'Foundation'
12 | extension URL: @unchecked Sendable {}
13 | extension UnitAngle: @unchecked Sendable {}
Foundation.Measurement:2:11: note: 'Measurement<UnitType>' declares conformance to protocol 'Sendable' here
1 | @available(macOS 10.12, iOS 10.0, watchOS 3.0, tvOS 10.0, *)
2 | extension Measurement : Sendable {
  |           `- note: 'Measurement<UnitType>' declares conformance to protocol 'Sendable' here
3 | }
/Users/admin/builder/spi-builder-workspace/Sources/OpenWeatherKit/Internal/Extensions/Sendable+Compat.swift:12:27: warning: conformance of 'URL' to protocol 'Sendable' was already stated in the type's module 'Foundation'
10 | extension Date: @unchecked Sendable {}
11 | extension Measurement: @unchecked Sendable {}
12 | extension URL: @unchecked Sendable {}
   |                           `- warning: conformance of 'URL' to protocol 'Sendable' was already stated in the type's module 'Foundation'
13 | extension UnitAngle: @unchecked Sendable {}
14 | extension UnitLength: @unchecked Sendable {}
Foundation.URL:2:15: note: 'URL' declares conformance to protocol 'Sendable' here
  1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
  2 | public struct URL : Equatable, Sendable, Hashable {
    |               `- note: 'URL' declares conformance to protocol 'Sendable' here
  3 |     public typealias BookmarkResolutionOptions = NSURL.BookmarkResolutionOptions
  4 |     public typealias BookmarkCreationOptions = NSURL.BookmarkCreationOptions
/Users/admin/builder/spi-builder-workspace/Sources/OpenWeatherKit/Internal/Extensions/Sendable+Compat.swift:20:34: warning: conformance of 'URLSession' to protocol 'Sendable' was already stated in the type's module 'Foundation'
18 |
19 | #if !os(Linux)
20 | extension URLSession: @unchecked Sendable {}
   |                                  `- warning: conformance of 'URLSession' to protocol 'Sendable' was already stated in the type's module 'Foundation'
21 | #endif
22 |
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLSession.h:121:12: note: 'URLSession' implicitly conforms to protocol 'Sendable'  here
 119 | NS_SWIFT_SENDABLE
 120 | API_AVAILABLE(macos(10.9), ios(7.0), watchos(2.0), tvos(9.0))
 121 | @interface NSURLSession : NSObject
     |            `- note: 'URLSession' implicitly conforms to protocol 'Sendable'  here
 122 |
 123 | /*
/Users/admin/builder/spi-builder-workspace/Sources/OpenWeatherKit/Public/Protocols/LocationProtocol.swift:12:52: warning: conformance of 'CLLocation' to protocol 'Sendable' was already stated in the type's module '_LocationEssentials'
10 | import CoreLocation
11 |
12 | extension CLLocation: LocationProtocol, @unchecked Sendable {
   |                                                    `- warning: conformance of 'CLLocation' to protocol 'Sendable' was already stated in the type's module '_LocationEssentials'
13 |     public var latitude: Double { coordinate.latitude }
14 |     public var longitude: Double { coordinate.longitude }
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/System/Library/Frameworks/_LocationEssentials.framework/Headers/CLLocationEssentials.h:248:12: note: 'CLLocation' implicitly conforms to protocol 'Sendable'  here
246 | CLES_EXPORT
247 | NS_SWIFT_SENDABLE API_AVAILABLE(macos(10.6), ios(2.0))
248 | @interface CLLocation : NSObject <NSCopying, NSSecureCoding>
    |            `- note: 'CLLocation' implicitly conforms to protocol 'Sendable'  here
249 | {
250 | @private
[6/59] Compiling OpenWeatherKit APIMetadata.swift
[7/59] Compiling OpenWeatherKit APIWeather.swift
[8/59] Compiling OpenWeatherKit APIWeatherAlerts.swift
[9/59] Compiling OpenWeatherKit APIWeatherAvailability.swift
[10/59] Compiling OpenWeatherKit NetworkClient.swift
[11/59] Compiling OpenWeatherKit Client.swift
[12/59] Compiling OpenWeatherKit SunEvents.swift
[13/59] Compiling OpenWeatherKit AlertSummary.swift
[14/59] Compiling OpenWeatherKit AlertUrgency.swift
[15/59] Compiling OpenWeatherKit Certainty.swift
[16/59] Compiling OpenWeatherKit Precipitation.swift
[17/59] Compiling OpenWeatherKit WeatherQuery.swift
[18/59] Compiling OpenWeatherKit Weather.swift
[19/59] Compiling OpenWeatherKit WeatherError.swift
[20/59] Compiling OpenWeatherKit WeatherService.swift
[21/59] Compiling OpenWeatherKit resource_bundle_accessor.swift
[22/59] Compiling OpenWeatherKit Query.swift
[23/59] Compiling OpenWeatherKit Route.swift
[24/59] Compiling OpenWeatherKit WeatherProxy.swift
[25/59] Compiling OpenWeatherKit MoonEvents.swift
[26/59] Compiling OpenWeatherKit MoonPhase.swift
[27/59] Compiling OpenWeatherKit APIWeatherAlerts+Map.swift
/Users/admin/builder/spi-builder-workspace/Sources/OpenWeatherKit/Internal/Extensions/Sendable+Compat.swift:10:28: warning: conformance of 'Date' to protocol 'Sendable' was already stated in the type's module 'Foundation'
 8 | import Foundation
 9 |
10 | extension Date: @unchecked Sendable {}
   |                            `- warning: conformance of 'Date' to protocol 'Sendable' was already stated in the type's module 'Foundation'
11 | extension Measurement: @unchecked Sendable {}
12 | extension URL: @unchecked Sendable {}
Foundation.Date:2:15: note: 'Date' declares conformance to protocol 'Sendable' here
 1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
 2 | public struct Date : Comparable, Hashable, Equatable, Sendable {
   |               `- note: 'Date' declares conformance to protocol 'Sendable' here
 3 |     public static let timeIntervalBetween1970AndReferenceDate: Double
 4 |     public static var timeIntervalSinceReferenceDate: TimeInterval { get }
/Users/admin/builder/spi-builder-workspace/Sources/OpenWeatherKit/Internal/Extensions/Sendable+Compat.swift:11:35: warning: conformance of 'Measurement<UnitType>' to protocol 'Sendable' was already stated in the type's module 'Foundation'
 9 |
10 | extension Date: @unchecked Sendable {}
11 | extension Measurement: @unchecked Sendable {}
   |                                   `- warning: conformance of 'Measurement<UnitType>' to protocol 'Sendable' was already stated in the type's module 'Foundation'
12 | extension URL: @unchecked Sendable {}
13 | extension UnitAngle: @unchecked Sendable {}
Foundation.Measurement:2:11: note: 'Measurement<UnitType>' declares conformance to protocol 'Sendable' here
1 | @available(macOS 10.12, iOS 10.0, watchOS 3.0, tvOS 10.0, *)
2 | extension Measurement : Sendable {
  |           `- note: 'Measurement<UnitType>' declares conformance to protocol 'Sendable' here
3 | }
/Users/admin/builder/spi-builder-workspace/Sources/OpenWeatherKit/Internal/Extensions/Sendable+Compat.swift:12:27: warning: conformance of 'URL' to protocol 'Sendable' was already stated in the type's module 'Foundation'
10 | extension Date: @unchecked Sendable {}
11 | extension Measurement: @unchecked Sendable {}
12 | extension URL: @unchecked Sendable {}
   |                           `- warning: conformance of 'URL' to protocol 'Sendable' was already stated in the type's module 'Foundation'
13 | extension UnitAngle: @unchecked Sendable {}
14 | extension UnitLength: @unchecked Sendable {}
Foundation.URL:2:15: note: 'URL' declares conformance to protocol 'Sendable' here
  1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
  2 | public struct URL : Equatable, Sendable, Hashable {
    |               `- note: 'URL' declares conformance to protocol 'Sendable' here
  3 |     public typealias BookmarkResolutionOptions = NSURL.BookmarkResolutionOptions
  4 |     public typealias BookmarkCreationOptions = NSURL.BookmarkCreationOptions
/Users/admin/builder/spi-builder-workspace/Sources/OpenWeatherKit/Internal/Extensions/Sendable+Compat.swift:20:34: warning: conformance of 'URLSession' to protocol 'Sendable' was already stated in the type's module 'Foundation'
18 |
19 | #if !os(Linux)
20 | extension URLSession: @unchecked Sendable {}
   |                                  `- warning: conformance of 'URLSession' to protocol 'Sendable' was already stated in the type's module 'Foundation'
21 | #endif
22 |
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLSession.h:121:12: note: 'URLSession' implicitly conforms to protocol 'Sendable'  here
 119 | NS_SWIFT_SENDABLE
 120 | API_AVAILABLE(macos(10.9), ios(7.0), watchos(2.0), tvos(9.0))
 121 | @interface NSURLSession : NSObject
     |            `- note: 'URLSession' implicitly conforms to protocol 'Sendable'  here
 122 |
 123 | /*
[28/59] Compiling OpenWeatherKit APIWeatherAvailability+Map.swift
/Users/admin/builder/spi-builder-workspace/Sources/OpenWeatherKit/Internal/Extensions/Sendable+Compat.swift:10:28: warning: conformance of 'Date' to protocol 'Sendable' was already stated in the type's module 'Foundation'
 8 | import Foundation
 9 |
10 | extension Date: @unchecked Sendable {}
   |                            `- warning: conformance of 'Date' to protocol 'Sendable' was already stated in the type's module 'Foundation'
11 | extension Measurement: @unchecked Sendable {}
12 | extension URL: @unchecked Sendable {}
Foundation.Date:2:15: note: 'Date' declares conformance to protocol 'Sendable' here
 1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
 2 | public struct Date : Comparable, Hashable, Equatable, Sendable {
   |               `- note: 'Date' declares conformance to protocol 'Sendable' here
 3 |     public static let timeIntervalBetween1970AndReferenceDate: Double
 4 |     public static var timeIntervalSinceReferenceDate: TimeInterval { get }
/Users/admin/builder/spi-builder-workspace/Sources/OpenWeatherKit/Internal/Extensions/Sendable+Compat.swift:11:35: warning: conformance of 'Measurement<UnitType>' to protocol 'Sendable' was already stated in the type's module 'Foundation'
 9 |
10 | extension Date: @unchecked Sendable {}
11 | extension Measurement: @unchecked Sendable {}
   |                                   `- warning: conformance of 'Measurement<UnitType>' to protocol 'Sendable' was already stated in the type's module 'Foundation'
12 | extension URL: @unchecked Sendable {}
13 | extension UnitAngle: @unchecked Sendable {}
Foundation.Measurement:2:11: note: 'Measurement<UnitType>' declares conformance to protocol 'Sendable' here
1 | @available(macOS 10.12, iOS 10.0, watchOS 3.0, tvOS 10.0, *)
2 | extension Measurement : Sendable {
  |           `- note: 'Measurement<UnitType>' declares conformance to protocol 'Sendable' here
3 | }
/Users/admin/builder/spi-builder-workspace/Sources/OpenWeatherKit/Internal/Extensions/Sendable+Compat.swift:12:27: warning: conformance of 'URL' to protocol 'Sendable' was already stated in the type's module 'Foundation'
10 | extension Date: @unchecked Sendable {}
11 | extension Measurement: @unchecked Sendable {}
12 | extension URL: @unchecked Sendable {}
   |                           `- warning: conformance of 'URL' to protocol 'Sendable' was already stated in the type's module 'Foundation'
13 | extension UnitAngle: @unchecked Sendable {}
14 | extension UnitLength: @unchecked Sendable {}
Foundation.URL:2:15: note: 'URL' declares conformance to protocol 'Sendable' here
  1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
  2 | public struct URL : Equatable, Sendable, Hashable {
    |               `- note: 'URL' declares conformance to protocol 'Sendable' here
  3 |     public typealias BookmarkResolutionOptions = NSURL.BookmarkResolutionOptions
  4 |     public typealias BookmarkCreationOptions = NSURL.BookmarkCreationOptions
/Users/admin/builder/spi-builder-workspace/Sources/OpenWeatherKit/Internal/Extensions/Sendable+Compat.swift:20:34: warning: conformance of 'URLSession' to protocol 'Sendable' was already stated in the type's module 'Foundation'
18 |
19 | #if !os(Linux)
20 | extension URLSession: @unchecked Sendable {}
   |                                  `- warning: conformance of 'URLSession' to protocol 'Sendable' was already stated in the type's module 'Foundation'
21 | #endif
22 |
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLSession.h:121:12: note: 'URLSession' implicitly conforms to protocol 'Sendable'  here
 119 | NS_SWIFT_SENDABLE
 120 | API_AVAILABLE(macos(10.9), ios(7.0), watchos(2.0), tvos(9.0))
 121 | @interface NSURLSession : NSObject
     |            `- note: 'URLSession' implicitly conforms to protocol 'Sendable'  here
 122 |
 123 | /*
[29/59] Compiling OpenWeatherKit Date+Utils.swift
/Users/admin/builder/spi-builder-workspace/Sources/OpenWeatherKit/Internal/Extensions/Sendable+Compat.swift:10:28: warning: conformance of 'Date' to protocol 'Sendable' was already stated in the type's module 'Foundation'
 8 | import Foundation
 9 |
10 | extension Date: @unchecked Sendable {}
   |                            `- warning: conformance of 'Date' to protocol 'Sendable' was already stated in the type's module 'Foundation'
11 | extension Measurement: @unchecked Sendable {}
12 | extension URL: @unchecked Sendable {}
Foundation.Date:2:15: note: 'Date' declares conformance to protocol 'Sendable' here
 1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
 2 | public struct Date : Comparable, Hashable, Equatable, Sendable {
   |               `- note: 'Date' declares conformance to protocol 'Sendable' here
 3 |     public static let timeIntervalBetween1970AndReferenceDate: Double
 4 |     public static var timeIntervalSinceReferenceDate: TimeInterval { get }
/Users/admin/builder/spi-builder-workspace/Sources/OpenWeatherKit/Internal/Extensions/Sendable+Compat.swift:11:35: warning: conformance of 'Measurement<UnitType>' to protocol 'Sendable' was already stated in the type's module 'Foundation'
 9 |
10 | extension Date: @unchecked Sendable {}
11 | extension Measurement: @unchecked Sendable {}
   |                                   `- warning: conformance of 'Measurement<UnitType>' to protocol 'Sendable' was already stated in the type's module 'Foundation'
12 | extension URL: @unchecked Sendable {}
13 | extension UnitAngle: @unchecked Sendable {}
Foundation.Measurement:2:11: note: 'Measurement<UnitType>' declares conformance to protocol 'Sendable' here
1 | @available(macOS 10.12, iOS 10.0, watchOS 3.0, tvOS 10.0, *)
2 | extension Measurement : Sendable {
  |           `- note: 'Measurement<UnitType>' declares conformance to protocol 'Sendable' here
3 | }
/Users/admin/builder/spi-builder-workspace/Sources/OpenWeatherKit/Internal/Extensions/Sendable+Compat.swift:12:27: warning: conformance of 'URL' to protocol 'Sendable' was already stated in the type's module 'Foundation'
10 | extension Date: @unchecked Sendable {}
11 | extension Measurement: @unchecked Sendable {}
12 | extension URL: @unchecked Sendable {}
   |                           `- warning: conformance of 'URL' to protocol 'Sendable' was already stated in the type's module 'Foundation'
13 | extension UnitAngle: @unchecked Sendable {}
14 | extension UnitLength: @unchecked Sendable {}
Foundation.URL:2:15: note: 'URL' declares conformance to protocol 'Sendable' here
  1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
  2 | public struct URL : Equatable, Sendable, Hashable {
    |               `- note: 'URL' declares conformance to protocol 'Sendable' here
  3 |     public typealias BookmarkResolutionOptions = NSURL.BookmarkResolutionOptions
  4 |     public typealias BookmarkCreationOptions = NSURL.BookmarkCreationOptions
/Users/admin/builder/spi-builder-workspace/Sources/OpenWeatherKit/Internal/Extensions/Sendable+Compat.swift:20:34: warning: conformance of 'URLSession' to protocol 'Sendable' was already stated in the type's module 'Foundation'
18 |
19 | #if !os(Linux)
20 | extension URLSession: @unchecked Sendable {}
   |                                  `- warning: conformance of 'URLSession' to protocol 'Sendable' was already stated in the type's module 'Foundation'
21 | #endif
22 |
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLSession.h:121:12: note: 'URLSession' implicitly conforms to protocol 'Sendable'  here
 119 | NS_SWIFT_SENDABLE
 120 | API_AVAILABLE(macos(10.9), ios(7.0), watchos(2.0), tvos(9.0))
 121 | @interface NSURLSession : NSObject
     |            `- note: 'URLSession' implicitly conforms to protocol 'Sendable'  here
 122 |
 123 | /*
[30/59] Compiling OpenWeatherKit Optional+Utils.swift
/Users/admin/builder/spi-builder-workspace/Sources/OpenWeatherKit/Internal/Extensions/Sendable+Compat.swift:10:28: warning: conformance of 'Date' to protocol 'Sendable' was already stated in the type's module 'Foundation'
 8 | import Foundation
 9 |
10 | extension Date: @unchecked Sendable {}
   |                            `- warning: conformance of 'Date' to protocol 'Sendable' was already stated in the type's module 'Foundation'
11 | extension Measurement: @unchecked Sendable {}
12 | extension URL: @unchecked Sendable {}
Foundation.Date:2:15: note: 'Date' declares conformance to protocol 'Sendable' here
 1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
 2 | public struct Date : Comparable, Hashable, Equatable, Sendable {
   |               `- note: 'Date' declares conformance to protocol 'Sendable' here
 3 |     public static let timeIntervalBetween1970AndReferenceDate: Double
 4 |     public static var timeIntervalSinceReferenceDate: TimeInterval { get }
/Users/admin/builder/spi-builder-workspace/Sources/OpenWeatherKit/Internal/Extensions/Sendable+Compat.swift:11:35: warning: conformance of 'Measurement<UnitType>' to protocol 'Sendable' was already stated in the type's module 'Foundation'
 9 |
10 | extension Date: @unchecked Sendable {}
11 | extension Measurement: @unchecked Sendable {}
   |                                   `- warning: conformance of 'Measurement<UnitType>' to protocol 'Sendable' was already stated in the type's module 'Foundation'
12 | extension URL: @unchecked Sendable {}
13 | extension UnitAngle: @unchecked Sendable {}
Foundation.Measurement:2:11: note: 'Measurement<UnitType>' declares conformance to protocol 'Sendable' here
1 | @available(macOS 10.12, iOS 10.0, watchOS 3.0, tvOS 10.0, *)
2 | extension Measurement : Sendable {
  |           `- note: 'Measurement<UnitType>' declares conformance to protocol 'Sendable' here
3 | }
/Users/admin/builder/spi-builder-workspace/Sources/OpenWeatherKit/Internal/Extensions/Sendable+Compat.swift:12:27: warning: conformance of 'URL' to protocol 'Sendable' was already stated in the type's module 'Foundation'
10 | extension Date: @unchecked Sendable {}
11 | extension Measurement: @unchecked Sendable {}
12 | extension URL: @unchecked Sendable {}
   |                           `- warning: conformance of 'URL' to protocol 'Sendable' was already stated in the type's module 'Foundation'
13 | extension UnitAngle: @unchecked Sendable {}
14 | extension UnitLength: @unchecked Sendable {}
Foundation.URL:2:15: note: 'URL' declares conformance to protocol 'Sendable' here
  1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
  2 | public struct URL : Equatable, Sendable, Hashable {
    |               `- note: 'URL' declares conformance to protocol 'Sendable' here
  3 |     public typealias BookmarkResolutionOptions = NSURL.BookmarkResolutionOptions
  4 |     public typealias BookmarkCreationOptions = NSURL.BookmarkCreationOptions
/Users/admin/builder/spi-builder-workspace/Sources/OpenWeatherKit/Internal/Extensions/Sendable+Compat.swift:20:34: warning: conformance of 'URLSession' to protocol 'Sendable' was already stated in the type's module 'Foundation'
18 |
19 | #if !os(Linux)
20 | extension URLSession: @unchecked Sendable {}
   |                                  `- warning: conformance of 'URLSession' to protocol 'Sendable' was already stated in the type's module 'Foundation'
21 | #endif
22 |
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLSession.h:121:12: note: 'URLSession' implicitly conforms to protocol 'Sendable'  here
 119 | NS_SWIFT_SENDABLE
 120 | API_AVAILABLE(macos(10.9), ios(7.0), watchos(2.0), tvos(9.0))
 121 | @interface NSURLSession : NSObject
     |            `- note: 'URLSession' implicitly conforms to protocol 'Sendable'  here
 122 |
 123 | /*
[31/59] Compiling OpenWeatherKit Sendable+Compat.swift
/Users/admin/builder/spi-builder-workspace/Sources/OpenWeatherKit/Internal/Extensions/Sendable+Compat.swift:10:28: warning: conformance of 'Date' to protocol 'Sendable' was already stated in the type's module 'Foundation'
 8 | import Foundation
 9 |
10 | extension Date: @unchecked Sendable {}
   |                            `- warning: conformance of 'Date' to protocol 'Sendable' was already stated in the type's module 'Foundation'
11 | extension Measurement: @unchecked Sendable {}
12 | extension URL: @unchecked Sendable {}
Foundation.Date:2:15: note: 'Date' declares conformance to protocol 'Sendable' here
 1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
 2 | public struct Date : Comparable, Hashable, Equatable, Sendable {
   |               `- note: 'Date' declares conformance to protocol 'Sendable' here
 3 |     public static let timeIntervalBetween1970AndReferenceDate: Double
 4 |     public static var timeIntervalSinceReferenceDate: TimeInterval { get }
/Users/admin/builder/spi-builder-workspace/Sources/OpenWeatherKit/Internal/Extensions/Sendable+Compat.swift:11:35: warning: conformance of 'Measurement<UnitType>' to protocol 'Sendable' was already stated in the type's module 'Foundation'
 9 |
10 | extension Date: @unchecked Sendable {}
11 | extension Measurement: @unchecked Sendable {}
   |                                   `- warning: conformance of 'Measurement<UnitType>' to protocol 'Sendable' was already stated in the type's module 'Foundation'
12 | extension URL: @unchecked Sendable {}
13 | extension UnitAngle: @unchecked Sendable {}
Foundation.Measurement:2:11: note: 'Measurement<UnitType>' declares conformance to protocol 'Sendable' here
1 | @available(macOS 10.12, iOS 10.0, watchOS 3.0, tvOS 10.0, *)
2 | extension Measurement : Sendable {
  |           `- note: 'Measurement<UnitType>' declares conformance to protocol 'Sendable' here
3 | }
/Users/admin/builder/spi-builder-workspace/Sources/OpenWeatherKit/Internal/Extensions/Sendable+Compat.swift:12:27: warning: conformance of 'URL' to protocol 'Sendable' was already stated in the type's module 'Foundation'
10 | extension Date: @unchecked Sendable {}
11 | extension Measurement: @unchecked Sendable {}
12 | extension URL: @unchecked Sendable {}
   |                           `- warning: conformance of 'URL' to protocol 'Sendable' was already stated in the type's module 'Foundation'
13 | extension UnitAngle: @unchecked Sendable {}
14 | extension UnitLength: @unchecked Sendable {}
Foundation.URL:2:15: note: 'URL' declares conformance to protocol 'Sendable' here
  1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
  2 | public struct URL : Equatable, Sendable, Hashable {
    |               `- note: 'URL' declares conformance to protocol 'Sendable' here
  3 |     public typealias BookmarkResolutionOptions = NSURL.BookmarkResolutionOptions
  4 |     public typealias BookmarkCreationOptions = NSURL.BookmarkCreationOptions
/Users/admin/builder/spi-builder-workspace/Sources/OpenWeatherKit/Internal/Extensions/Sendable+Compat.swift:20:34: warning: conformance of 'URLSession' to protocol 'Sendable' was already stated in the type's module 'Foundation'
18 |
19 | #if !os(Linux)
20 | extension URLSession: @unchecked Sendable {}
   |                                  `- warning: conformance of 'URLSession' to protocol 'Sendable' was already stated in the type's module 'Foundation'
21 | #endif
22 |
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLSession.h:121:12: note: 'URLSession' implicitly conforms to protocol 'Sendable'  here
 119 | NS_SWIFT_SENDABLE
 120 | API_AVAILABLE(macos(10.9), ios(7.0), watchos(2.0), tvos(9.0))
 121 | @interface NSURLSession : NSObject
     |            `- note: 'URLSession' implicitly conforms to protocol 'Sendable'  here
 122 |
 123 | /*
[32/59] Compiling OpenWeatherKit UnitSpeed.swift
/Users/admin/builder/spi-builder-workspace/Sources/OpenWeatherKit/Internal/Extensions/Sendable+Compat.swift:10:28: warning: conformance of 'Date' to protocol 'Sendable' was already stated in the type's module 'Foundation'
 8 | import Foundation
 9 |
10 | extension Date: @unchecked Sendable {}
   |                            `- warning: conformance of 'Date' to protocol 'Sendable' was already stated in the type's module 'Foundation'
11 | extension Measurement: @unchecked Sendable {}
12 | extension URL: @unchecked Sendable {}
Foundation.Date:2:15: note: 'Date' declares conformance to protocol 'Sendable' here
 1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
 2 | public struct Date : Comparable, Hashable, Equatable, Sendable {
   |               `- note: 'Date' declares conformance to protocol 'Sendable' here
 3 |     public static let timeIntervalBetween1970AndReferenceDate: Double
 4 |     public static var timeIntervalSinceReferenceDate: TimeInterval { get }
/Users/admin/builder/spi-builder-workspace/Sources/OpenWeatherKit/Internal/Extensions/Sendable+Compat.swift:11:35: warning: conformance of 'Measurement<UnitType>' to protocol 'Sendable' was already stated in the type's module 'Foundation'
 9 |
10 | extension Date: @unchecked Sendable {}
11 | extension Measurement: @unchecked Sendable {}
   |                                   `- warning: conformance of 'Measurement<UnitType>' to protocol 'Sendable' was already stated in the type's module 'Foundation'
12 | extension URL: @unchecked Sendable {}
13 | extension UnitAngle: @unchecked Sendable {}
Foundation.Measurement:2:11: note: 'Measurement<UnitType>' declares conformance to protocol 'Sendable' here
1 | @available(macOS 10.12, iOS 10.0, watchOS 3.0, tvOS 10.0, *)
2 | extension Measurement : Sendable {
  |           `- note: 'Measurement<UnitType>' declares conformance to protocol 'Sendable' here
3 | }
/Users/admin/builder/spi-builder-workspace/Sources/OpenWeatherKit/Internal/Extensions/Sendable+Compat.swift:12:27: warning: conformance of 'URL' to protocol 'Sendable' was already stated in the type's module 'Foundation'
10 | extension Date: @unchecked Sendable {}
11 | extension Measurement: @unchecked Sendable {}
12 | extension URL: @unchecked Sendable {}
   |                           `- warning: conformance of 'URL' to protocol 'Sendable' was already stated in the type's module 'Foundation'
13 | extension UnitAngle: @unchecked Sendable {}
14 | extension UnitLength: @unchecked Sendable {}
Foundation.URL:2:15: note: 'URL' declares conformance to protocol 'Sendable' here
  1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
  2 | public struct URL : Equatable, Sendable, Hashable {
    |               `- note: 'URL' declares conformance to protocol 'Sendable' here
  3 |     public typealias BookmarkResolutionOptions = NSURL.BookmarkResolutionOptions
  4 |     public typealias BookmarkCreationOptions = NSURL.BookmarkCreationOptions
/Users/admin/builder/spi-builder-workspace/Sources/OpenWeatherKit/Internal/Extensions/Sendable+Compat.swift:20:34: warning: conformance of 'URLSession' to protocol 'Sendable' was already stated in the type's module 'Foundation'
18 |
19 | #if !os(Linux)
20 | extension URLSession: @unchecked Sendable {}
   |                                  `- warning: conformance of 'URLSession' to protocol 'Sendable' was already stated in the type's module 'Foundation'
21 | #endif
22 |
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLSession.h:121:12: note: 'URLSession' implicitly conforms to protocol 'Sendable'  here
 119 | NS_SWIFT_SENDABLE
 120 | API_AVAILABLE(macos(10.9), ios(7.0), watchos(2.0), tvos(9.0))
 121 | @interface NSURLSession : NSObject
     |            `- note: 'URLSession' implicitly conforms to protocol 'Sendable'  here
 122 |
 123 | /*
[33/59] Compiling OpenWeatherKit PressureTrend.swift
[34/59] Compiling OpenWeatherKit UVIndex.swift
[35/59] Compiling OpenWeatherKit WeatherCondition.swift
[36/59] Compiling OpenWeatherKit WeatherSeverity.swift
[37/59] Compiling OpenWeatherKit Wind.swift
[38/59] Compiling OpenWeatherKit APICurrentWeather+Map.swift
[39/59] Compiling OpenWeatherKit APIForecastDaily+Map.swift
[40/59] Compiling OpenWeatherKit APIForecastHourly+Map.swift
[41/59] Compiling OpenWeatherKit APIForecastNextHour+Map.swift
[42/59] Compiling OpenWeatherKit APIMetadata+Map.swift
[43/59] Compiling OpenWeatherKit APIWeather+Map.swift
[44/59] Compiling OpenWeatherKit DayWeather.swift
[45/59] Compiling OpenWeatherKit Forecast.swift
[46/59] Compiling OpenWeatherKit HourWeather.swift
[47/59] Compiling OpenWeatherKit MinuteWeather.swift
[48/59] Compiling OpenWeatherKit WeatherAlert.swift
[49/59] Compiling OpenWeatherKit WeatherQuery+QueryItems.swift
[50/59] Compiling OpenWeatherKit Geocoder.swift
[51/59] Compiling OpenWeatherKit APICurrentWeather.swift
[52/59] Compiling OpenWeatherKit APIForecastDaily.swift
[53/59] Compiling OpenWeatherKit APIForecastHourly.swift
[54/59] Compiling OpenWeatherKit APIForecastNextHour.swift
[55/59] Compiling OpenWeatherKit WeatherAvailability.swift
/Users/admin/builder/spi-builder-workspace/Sources/OpenWeatherKit/Public/Protocols/LocationProtocol.swift:12:52: warning: conformance of 'CLLocation' to protocol 'Sendable' was already stated in the type's module '_LocationEssentials'
10 | import CoreLocation
11 |
12 | extension CLLocation: LocationProtocol, @unchecked Sendable {
   |                                                    `- warning: conformance of 'CLLocation' to protocol 'Sendable' was already stated in the type's module '_LocationEssentials'
13 |     public var latitude: Double { coordinate.latitude }
14 |     public var longitude: Double { coordinate.longitude }
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/System/Library/Frameworks/_LocationEssentials.framework/Headers/CLLocationEssentials.h:248:12: note: 'CLLocation' implicitly conforms to protocol 'Sendable'  here
246 | CLES_EXPORT
247 | NS_SWIFT_SENDABLE API_AVAILABLE(macos(10.6), ios(2.0))
248 | @interface CLLocation : NSObject <NSCopying, NSSecureCoding>
    |            `- note: 'CLLocation' implicitly conforms to protocol 'Sendable'  here
249 | {
250 | @private
[56/59] Compiling OpenWeatherKit LocationProtocol.swift
/Users/admin/builder/spi-builder-workspace/Sources/OpenWeatherKit/Public/Protocols/LocationProtocol.swift:12:52: warning: conformance of 'CLLocation' to protocol 'Sendable' was already stated in the type's module '_LocationEssentials'
10 | import CoreLocation
11 |
12 | extension CLLocation: LocationProtocol, @unchecked Sendable {
   |                                                    `- warning: conformance of 'CLLocation' to protocol 'Sendable' was already stated in the type's module '_LocationEssentials'
13 |     public var latitude: Double { coordinate.latitude }
14 |     public var longitude: Double { coordinate.longitude }
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/System/Library/Frameworks/_LocationEssentials.framework/Headers/CLLocationEssentials.h:248:12: note: 'CLLocation' implicitly conforms to protocol 'Sendable'  here
246 | CLES_EXPORT
247 | NS_SWIFT_SENDABLE API_AVAILABLE(macos(10.6), ios(2.0))
248 | @interface CLLocation : NSObject <NSCopying, NSSecureCoding>
    |            `- note: 'CLLocation' implicitly conforms to protocol 'Sendable'  here
249 | {
250 | @private
[57/59] Compiling OpenWeatherKit CurrentWeather.swift
/Users/admin/builder/spi-builder-workspace/Sources/OpenWeatherKit/Public/Protocols/LocationProtocol.swift:12:52: warning: conformance of 'CLLocation' to protocol 'Sendable' was already stated in the type's module '_LocationEssentials'
10 | import CoreLocation
11 |
12 | extension CLLocation: LocationProtocol, @unchecked Sendable {
   |                                                    `- warning: conformance of 'CLLocation' to protocol 'Sendable' was already stated in the type's module '_LocationEssentials'
13 |     public var latitude: Double { coordinate.latitude }
14 |     public var longitude: Double { coordinate.longitude }
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/System/Library/Frameworks/_LocationEssentials.framework/Headers/CLLocationEssentials.h:248:12: note: 'CLLocation' implicitly conforms to protocol 'Sendable'  here
246 | CLES_EXPORT
247 | NS_SWIFT_SENDABLE API_AVAILABLE(macos(10.6), ios(2.0))
248 | @interface CLLocation : NSObject <NSCopying, NSSecureCoding>
    |            `- note: 'CLLocation' implicitly conforms to protocol 'Sendable'  here
249 | {
250 | @private
[58/59] Compiling OpenWeatherKit WeatherAttribution.swift
/Users/admin/builder/spi-builder-workspace/Sources/OpenWeatherKit/Public/Protocols/LocationProtocol.swift:12:52: warning: conformance of 'CLLocation' to protocol 'Sendable' was already stated in the type's module '_LocationEssentials'
10 | import CoreLocation
11 |
12 | extension CLLocation: LocationProtocol, @unchecked Sendable {
   |                                                    `- warning: conformance of 'CLLocation' to protocol 'Sendable' was already stated in the type's module '_LocationEssentials'
13 |     public var latitude: Double { coordinate.latitude }
14 |     public var longitude: Double { coordinate.longitude }
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/System/Library/Frameworks/_LocationEssentials.framework/Headers/CLLocationEssentials.h:248:12: note: 'CLLocation' implicitly conforms to protocol 'Sendable'  here
246 | CLES_EXPORT
247 | NS_SWIFT_SENDABLE API_AVAILABLE(macos(10.6), ios(2.0))
248 | @interface CLLocation : NSObject <NSCopying, NSSecureCoding>
    |            `- note: 'CLLocation' implicitly conforms to protocol 'Sendable'  here
249 | {
250 | @private
[59/59] Compiling OpenWeatherKit WeatherMetadata.swift
/Users/admin/builder/spi-builder-workspace/Sources/OpenWeatherKit/Public/Protocols/LocationProtocol.swift:12:52: warning: conformance of 'CLLocation' to protocol 'Sendable' was already stated in the type's module '_LocationEssentials'
10 | import CoreLocation
11 |
12 | extension CLLocation: LocationProtocol, @unchecked Sendable {
   |                                                    `- warning: conformance of 'CLLocation' to protocol 'Sendable' was already stated in the type's module '_LocationEssentials'
13 |     public var latitude: Double { coordinate.latitude }
14 |     public var longitude: Double { coordinate.longitude }
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/System/Library/Frameworks/_LocationEssentials.framework/Headers/CLLocationEssentials.h:248:12: note: 'CLLocation' implicitly conforms to protocol 'Sendable'  here
246 | CLES_EXPORT
247 | NS_SWIFT_SENDABLE API_AVAILABLE(macos(10.6), ios(2.0))
248 | @interface CLLocation : NSObject <NSCopying, NSSecureCoding>
    |            `- note: 'CLLocation' implicitly conforms to protocol 'Sendable'  here
249 | {
250 | @private
Build complete! (5.23s)
Build complete.
{
  "default_localization" : "en",
  "dependencies" : [
  ],
  "manifest_display_name" : "open-weather-kit",
  "name" : "open-weather-kit",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "13.0"
    },
    {
      "name" : "watchos",
      "version" : "6.0"
    },
    {
      "name" : "tvos",
      "version" : "13.0"
    },
    {
      "name" : "macos",
      "version" : "11.0"
    }
  ],
  "products" : [
    {
      "name" : "OpenWeatherKit",
      "targets" : [
        "OpenWeatherKit"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "OpenWeatherKitTests",
      "module_type" : "SwiftTarget",
      "name" : "OpenWeatherKitTests",
      "path" : "Tests/OpenWeatherKitTests",
      "sources" : [
        "OpenWeatherKitTests.swift",
        "Utils/Geocoder+Mock.swift",
        "Utils/MockClient.swift",
        "Utils/MockData.swift"
      ],
      "target_dependencies" : [
        "OpenWeatherKit"
      ],
      "type" : "test"
    },
    {
      "c99name" : "OpenWeatherKit",
      "module_type" : "SwiftTarget",
      "name" : "OpenWeatherKit",
      "path" : "Sources/OpenWeatherKit",
      "product_memberships" : [
        "OpenWeatherKit"
      ],
      "resources" : [
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/OpenWeatherKit/Resources/en.lproj/Localizable.strings",
          "rule" : {
            "process" : {
              "localization" : "en"
            }
          }
        }
      ],
      "sources" : [
        "Internal/Extensions/APICurrentWeather+Map.swift",
        "Internal/Extensions/APIForecastDaily+Map.swift",
        "Internal/Extensions/APIForecastHourly+Map.swift",
        "Internal/Extensions/APIForecastNextHour+Map.swift",
        "Internal/Extensions/APIMetadata+Map.swift",
        "Internal/Extensions/APIWeather+Map.swift",
        "Internal/Extensions/APIWeatherAlerts+Map.swift",
        "Internal/Extensions/APIWeatherAvailability+Map.swift",
        "Internal/Extensions/Date+Utils.swift",
        "Internal/Extensions/Optional+Utils.swift",
        "Internal/Extensions/Sendable+Compat.swift",
        "Internal/Extensions/UnitSpeed.swift",
        "Internal/Extensions/WeatherQuery+QueryItems.swift",
        "Internal/Geocoder.swift",
        "Internal/Models/APICurrentWeather.swift",
        "Internal/Models/APIForecastDaily.swift",
        "Internal/Models/APIForecastHourly.swift",
        "Internal/Models/APIForecastNextHour.swift",
        "Internal/Models/APIMetadata.swift",
        "Internal/Models/APIWeather.swift",
        "Internal/Models/APIWeatherAlerts.swift",
        "Internal/Models/APIWeatherAvailability.swift",
        "Internal/NetworkClient.swift",
        "Internal/Protocols/Client.swift",
        "Internal/Query.swift",
        "Internal/Route.swift",
        "Internal/WeatherProxy.swift",
        "Public/Celestial/MoonEvents.swift",
        "Public/Celestial/MoonPhase.swift",
        "Public/Celestial/SunEvents.swift",
        "Public/Characteristics/AlertSummary.swift",
        "Public/Characteristics/AlertUrgency.swift",
        "Public/Characteristics/Certainty.swift",
        "Public/Characteristics/Precipitation.swift",
        "Public/Characteristics/PressureTrend.swift",
        "Public/Characteristics/UVIndex.swift",
        "Public/Characteristics/WeatherCondition.swift",
        "Public/Characteristics/WeatherSeverity.swift",
        "Public/Characteristics/Wind.swift",
        "Public/Forecast/DayWeather.swift",
        "Public/Forecast/Forecast.swift",
        "Public/Forecast/HourWeather.swift",
        "Public/Forecast/MinuteWeather.swift",
        "Public/Forecast/WeatherAlert.swift",
        "Public/Forecast/WeatherAvailability.swift",
        "Public/Protocols/LocationProtocol.swift",
        "Public/Requests/CurrentWeather.swift",
        "Public/Requests/WeatherAttribution.swift",
        "Public/Requests/WeatherMetadata.swift",
        "Public/Requests/WeatherQuery.swift",
        "Public/Weather.swift",
        "Public/WeatherError.swift",
        "Public/WeatherService.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.5"
}
Done.