Skip to content

Commit 3369634

Browse files
committed
Merge branches 'dev' and 'master' of https://github.com/sassoftware/python-sasctl into dev
# Conflicts: # CHANGELOG.md # src/sasctl/__init__.py
2 parents f3b2f0c + 67107d2 commit 3369634

File tree

4 files changed

+66
-54
lines changed

4 files changed

+66
-54
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,14 @@ Unreleased
1111

1212
**Bugfixes**
1313
- Fixed an issue where `model_repository` did not find models by name once pagination limits were reached.
14+
-
15+
16+
v1.1.3 (2019-8-14)
17+
-----------------
18+
19+
**Bugfixes**
20+
- Fixed problem causing `register_model` task to include output variables in the input variables list.
21+
1422

1523
v1.1.2 (2019-8-12)
1624
-----------------

src/sasctl/tasks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ def get_version(x):
235235
assert isinstance(model, dict)
236236

237237
if create_project:
238-
vars = model.get('inputVariables', [])
238+
vars = model.get('inputVariables', [])[:]
239239
vars += model.get('outputVariables', [])
240240

241241
if model.get('function') == 'Regression':

0 commit comments

Comments
 (0)