Skip to content

Commit

Permalink
Force versions to end in json.
Browse files Browse the repository at this point in the history
Add python3.12
  • Loading branch information
morriscb committed Oct 24, 2024
1 parent 1c16450 commit 9c9cd71
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/abc_atlas_access_ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
strategy:
matrix:
os: [ "macos-latest", "windows-latest", "ubuntu-latest" ]
python-version: [ "3.8", "3.9", "3.10", "3.11" ]
python-version: [ "3.8", "3.9", "3.10", "3.11", "3.12" ]
fail-fast: false
steps:
- uses: actions/checkout@v4
Expand Down
3 changes: 2 additions & 1 deletion src/abc_atlas_access/abc_atlas_cache/cloud_cache.py
Original file line number Diff line number Diff line change
Expand Up @@ -1209,7 +1209,8 @@ def _list_all_manifests(self) -> list:
for subset in subset_iterator:
if 'Contents' in subset:
for obj in subset['Contents']:
output.append(obj['Key'])
if obj['Key'].endswith('.json'):
output.append(obj['Key'])

output.sort()
return output
Expand Down

0 comments on commit 9c9cd71

Please sign in to comment.