Skip to content

Commit

Permalink
Get ready for 1.9 release (#366)
Browse files Browse the repository at this point in the history
* get ready for 1.9 release

* fix deepdiff usage

---------

Co-authored-by: Ariana Barzinpour <ariana.barzinpour@ga.gov.au>
  • Loading branch information
Ariana-B and Ariana Barzinpour authored Dec 23, 2024
1 parent 97b56fc commit 95a4e40
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,14 @@ on:
push:
branches:
- develop
- integrate-1.9
paths:
- "**"

pull_request:
branches:
- develop
- integrate-1.9

release:
types: [published]
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@


tests_require = [
"deepdiff",
"deepdiff>=8.0",
"gdal",
"mock",
"pep8-naming",
Expand Down Expand Up @@ -78,7 +78,7 @@
"fiona",
"h5py",
"jsonschema>=4.18", # We want a Draft6Validator
"numpy>=1.15.4",
"numpy>=1.15.4,<2.0",
"pyproj",
"rasterio",
"ruamel.yaml",
Expand Down
4 changes: 2 additions & 2 deletions tests/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -200,12 +200,12 @@ def clean_offset(offset: str):
)
if "dictionary_item_added" in doc_diffs:
out.append("Added fields:")
for offset in doc_diffs.tree["dictionary_item_added"].items:
for offset in doc_diffs.tree["dictionary_item_added"]:
offset: DiffLevel
out.append(f" {clean_offset(offset.path())} = {offset.t2!r}")
if "dictionary_item_removed" in doc_diffs:
out.append("Removed fields:")
for offset in doc_diffs.tree["dictionary_item_removed"].items:
for offset in doc_diffs.tree["dictionary_item_removed"]:
offset: DiffLevel
out.append(f" {clean_offset(offset.path())} = {offset.t1!r}")
# Anything we missed from the (sometimes changing) diff api?
Expand Down

0 comments on commit 95a4e40

Please # to comment.