Skip to content

Commit

Permalink
v1.10.3
Browse files Browse the repository at this point in the history
  • Loading branch information
brianloyal committed Jun 7, 2023
1 parent ecb4560 commit 8a09ab9
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

---

## [1.10.3] - 2023-06-07

### 1.10.3 Fixed

- Fixed bug preventing load of nested stacks.

---

## [1.10.2] - 2023-06-06

### 1.10.2 Changed

- Added additional error handling to batchfold package
- Added additional error handling to batchfold package.

---

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setup(
name='batchfold',
version='1.10.2',
version='1.10.3',
description='A modular architecture for running protein structure analysis on AWS Batch.',
author='Brian Loyal',
author_email='[email protected]',
Expand Down
2 changes: 1 addition & 1 deletion src/batchfold/batchfold_environment.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ def load_nested_stacks(self) -> List:
resources = []

for page in pages:
resources.append(page.get("StackResourceSummaries", []))
resources.extend(page.get("StackResourceSummaries", []))

nested_stacks = [
x.get("PhysicalResourceId", [])
Expand Down

0 comments on commit 8a09ab9

Please sign in to comment.