Skip to content

Commit

Permalink
Pull request #87: Also deploy transitive runtime dependencies
Browse files Browse the repository at this point in the history
Merge in DEV/voyager from feature/deploytransitive to master

* commit '9d183d92b956f8ebf56fa1d06b54cb67256c5a9d':
  Add release notes and update version number
  Also deploy transitive runtime dependencies
  • Loading branch information
Marco Claessens committed Dec 15, 2022
2 parents 8921f16 + 9d183d9 commit 7c8633d
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion deploy/Installer.iss
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// ###########################
#define Release "1.16.1"
#define Release "1.16.2"
// ###########################

#define AppName "voyager"
Expand Down
3 changes: 3 additions & 0 deletions docs/release-notes.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Release notes

### [1.16.2]
- Also deploy transitive runtime dependencies

### [1.16.1]
- Change default install folder on Windows to `C:\Program Files\Prodrive\voyager`
- Add PATH variable now modifies the system PATH
Expand Down
2 changes: 1 addition & 1 deletion voyager/deployfromlockfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def deploy_all_dependencies(deploy_dir, only_runtime_deps):
pack = Package(dep['library'], dep['version'], dep['package_path'], dep.get('options', []), False, False)

if only_runtime_deps:
if dep.get('dependency_type') != "runtime":
if dep.get('dependency_type') != "runtime" and dep.get('type') != "runtime":
continue

for bin_path in pack.bin_paths:
Expand Down
2 changes: 1 addition & 1 deletion voyager/voyager.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
import voyager.doc as doc_server
import voyager.package_update as package_updater

VERSION = "1.16.1"
VERSION = "1.16.2"


@click.group()
Expand Down

0 comments on commit 7c8633d

Please sign in to comment.