This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.

The Swift Package Index logo.Swift Package Index

Track the adoption of Swift 6 strict concurrency checks for data race safety. How many packages are Ready for Swift 6?

Build Information

Failed to build SwiftTfIdf with Swift 6.0 for macOS (SPM).

Build Command

env DEVELOPER_DIR=/Applications/Xcode-15.3.0.app xcrun --toolchain org.swift.600202405261a swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete

Build Log

========================================
RunAll
========================================
Builder version: 4.40.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/aziyan99/SwiftTfIdf.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/aziyan99/SwiftTfIdf
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at 0300678 Create CONTRIBUTING.md
Cloned https://github.com/aziyan99/SwiftTfIdf.git
Revision (git rev-parse @):
030067817e1f4867d0177e5d3d3bc01e2d505a90
SUCCESS checkout https://github.com/aziyan99/SwiftTfIdf.git at main
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.0
Building package at path:  $workDir
https://github.com/aziyan99/SwiftTfIdf.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-15.3.0.app xcrun --toolchain org.swift.600202405261a swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-6F35C1178C84523A.txt
[3/4] Emitting module SwiftTfIdf
[4/4] Compiling SwiftTfIdf SwiftTfIdf.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTfIdf/SwiftTfIdf.swift:28:29: error: 'NLTokenizer' is only available in macOS 10.14 or newer
  2 | import Foundation
  3 |
  4 | public class SwiftTfIdf {
    |              `- note: add @available attribute to enclosing class
  5 |     public var rawSentences = [String]() // raw sentences
  6 |     public var topN: Int // how many top word want to get
    :
 19 |
 20 |     // Convert a bunch of sentences to array of words
 21 |     func sentences2ArrayOfWords(sentences: [String]) -> [[String]]{
    |          `- note: add @available attribute to enclosing instance method
 22 |         var arrayOfWordInSentences = [[String]]()
 23 |
    :
 26 |         for sentence in sentences {
 27 |             var words = [String]()
 28 |             let tokenizer = NLTokenizer(unit: .word)
    |                             |- error: 'NLTokenizer' is only available in macOS 10.14 or newer
    |                             `- note: add 'if #available' version check
 29 |             tokenizer.string = sentence
 30 |             tokenizer.enumerateTokens(in: sentence.startIndex..<sentence.endIndex) { tokenRange, _ in
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTfIdf/SwiftTfIdf.swift:28:29: error: 'init(unit:)' is only available in macOS 10.14 or newer
  2 | import Foundation
  3 |
  4 | public class SwiftTfIdf {
    |              `- note: add @available attribute to enclosing class
  5 |     public var rawSentences = [String]() // raw sentences
  6 |     public var topN: Int // how many top word want to get
    :
 19 |
 20 |     // Convert a bunch of sentences to array of words
 21 |     func sentences2ArrayOfWords(sentences: [String]) -> [[String]]{
    |          `- note: add @available attribute to enclosing instance method
 22 |         var arrayOfWordInSentences = [[String]]()
 23 |
    :
 26 |         for sentence in sentences {
 27 |             var words = [String]()
 28 |             let tokenizer = NLTokenizer(unit: .word)
    |                             |- error: 'init(unit:)' is only available in macOS 10.14 or newer
    |                             `- note: add 'if #available' version check
 29 |             tokenizer.string = sentence
 30 |             tokenizer.enumerateTokens(in: sentence.startIndex..<sentence.endIndex) { tokenRange, _ in
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTfIdf/SwiftTfIdf.swift:29:23: error: 'string' is only available in macOS 10.14 or newer
  2 | import Foundation
  3 |
  4 | public class SwiftTfIdf {
    |              `- note: add @available attribute to enclosing class
  5 |     public var rawSentences = [String]() // raw sentences
  6 |     public var topN: Int // how many top word want to get
    :
 19 |
 20 |     // Convert a bunch of sentences to array of words
 21 |     func sentences2ArrayOfWords(sentences: [String]) -> [[String]]{
    |          `- note: add @available attribute to enclosing instance method
 22 |         var arrayOfWordInSentences = [[String]]()
 23 |
    :
 27 |             var words = [String]()
 28 |             let tokenizer = NLTokenizer(unit: .word)
 29 |             tokenizer.string = sentence
    |                       |- error: 'string' is only available in macOS 10.14 or newer
    |                       `- note: add 'if #available' version check
 30 |             tokenizer.enumerateTokens(in: sentence.startIndex..<sentence.endIndex) { tokenRange, _ in
 31 |                 let word = String(sentence[tokenRange])
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTfIdf/SwiftTfIdf.swift:30:23: error: 'enumerateTokens(in:using:)' is only available in macOS 10.14 or newer
  2 | import Foundation
  3 |
  4 | public class SwiftTfIdf {
    |              `- note: add @available attribute to enclosing class
  5 |     public var rawSentences = [String]() // raw sentences
  6 |     public var topN: Int // how many top word want to get
    :
 19 |
 20 |     // Convert a bunch of sentences to array of words
 21 |     func sentences2ArrayOfWords(sentences: [String]) -> [[String]]{
    |          `- note: add @available attribute to enclosing instance method
 22 |         var arrayOfWordInSentences = [[String]]()
 23 |
    :
 28 |             let tokenizer = NLTokenizer(unit: .word)
 29 |             tokenizer.string = sentence
 30 |             tokenizer.enumerateTokens(in: sentence.startIndex..<sentence.endIndex) { tokenRange, _ in
    |                       |- error: 'enumerateTokens(in:using:)' is only available in macOS 10.14 or newer
    |                       `- note: add 'if #available' version check
 31 |                 let word = String(sentence[tokenRange])
 32 |
BUILD FAILURE 6.0 macosSpm
This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.