-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upgrading to Swift 4.0 / TensorFlow 1.4.0 / Docker
- Loading branch information
1 parent
0a1b7f8
commit fd890e9
Showing
5 changed files
with
18 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,11 @@ | ||
.DS_Store | ||
/.build | ||
/.build_lin | ||
/.build* | ||
/Packages | ||
/*.xcodeproj | ||
*.pins | ||
*.pb | ||
/*.resolved | ||
/*.pins | ||
/*.orig | ||
/*_deploy | ||
/.package* |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,17 @@ | ||
// | ||
// Package.swift | ||
// Perfect-TensorFlow-Demo-Computer Vision | ||
// | ||
// Created by Rockford Wei on 2017-06-19. | ||
// Copyright © 2017 PerfectlySoft. All rights reserved. | ||
// | ||
//===----------------------------------------------------------------------===// | ||
// | ||
// This source file is part of the Perfect.org open source project | ||
// | ||
// Copyright (c) 2017 - 2018 PerfectlySoft Inc. and the Perfect project authors | ||
// Licensed under Apache License v2.0 | ||
// | ||
// See http://perfect.org/licensing.html for license information | ||
// | ||
//===----------------------------------------------------------------------===// | ||
// | ||
|
||
// swift-tools-version:4.0 | ||
// The swift-tools-version declares the minimum version of Swift required to build this package. | ||
|
||
import PackageDescription | ||
|
||
let package = Package( | ||
name: "PerfectTensorFlowDemo", | ||
dependencies: [ | ||
.Package(url: "https://github.com/PerfectlySoft/Perfect-HTTPServer.git", majorVersion: 2), | ||
.Package(url: "https://github.com/PerfectlySoft/Perfect-TensorFlow.git", majorVersion: 1) | ||
.package(url: "https://github.com/PerfectlySoft/Perfect-HTTPServer.git", from: "3.0.0"), | ||
.package(url: "https://github.com/PerfectlySoft/Perfect-TensorFlow.git", from: "1.4.0"), | ||
], | ||
targets: [ | ||
.target( | ||
name: "PerfectTensorFlowDemo", | ||
dependencies: ["PerfectHTTPServer", "PerfectTensorFlow"]), | ||
] | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters