Skip to content

Commit 9d8e06c

Browse files
committed
Relax version requirement for swift-argument-parser
This will make SwiftSyntax more tolerant with regard to which swift-argument-parser version it needs, resulting in fewer version conflicts for users of SwiftSyntax.
1 parent cd793ad commit 9d8e06c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ let package = Package(
198198
if ProcessInfo.processInfo.environment["SWIFTCI_USE_LOCAL_DEPS"] == nil {
199199
// Building standalone.
200200
package.dependencies += [
201-
.package(url: "https://github.com/apple/swift-argument-parser.git", Version("1.0.1")..<Version("1.2.0")),
201+
.package(url: "https://github.com/apple/swift-argument-parser.git", from: "1.0.1"),
202202
]
203203
} else {
204204
package.dependencies += [

0 commit comments

Comments
 (0)