Skip to content

Commit

Permalink
[PythonCodable] Updated package
Browse files Browse the repository at this point in the history
  • Loading branch information
pvieito committed Nov 7, 2023
1 parent 85a6e32 commit e30d5d6
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
13 changes: 7 additions & 6 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
// swift-tools-version:5.1
// swift-tools-version:5.7

import PackageDescription

let package = Package(
name: "PythonCodable",
platforms: [
.macOS(.v10_12)
.macOS(.v11)
],
products: [
.library(
Expand All @@ -14,9 +14,9 @@ let package = Package(
)
],
dependencies: [
.package(url: "[email protected]:pvieito/FoundationKit.git", .branch("master")),
.package(url: "[email protected]:pvieito/PythonKit.git", .branch("master")),
.package(url: "https://github.com/tattn/MoreCodable.git", .branch("master")),
.package(url: "[email protected]:pvieito/FoundationKit.git", branch: "master"),
.package(url: "[email protected]:pvieito/PythonKit.git", branch: "master"),
.package(url: "https://github.com/tattn/MoreCodable.git", branch: "master"),
],
targets: [
.target(
Expand All @@ -26,7 +26,8 @@ let package = Package(
),
.testTarget(
name: "PythonCodableTests",
dependencies: ["PythonCodable", "PythonKit", "FoundationKit"]
dependencies: ["PythonCodable", "PythonKit", "FoundationKit"],
resources: [.process("Resources")]
)
]
)
2 changes: 1 addition & 1 deletion Tests/PythonCodableTests/PythonCodableTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@
import Foundation

struct PythonCodableTests {
static let testBundle = Bundle.currentModuleBundle()
static let testBundle = Bundle.module
}

0 comments on commit e30d5d6

Please sign in to comment.