diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index b5e86c4..25cde07 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -21,14 +21,19 @@ jobs: run: | git clone https://github.com/open-contracting/cove-${{ matrix.cove }}.git git clone https://github.com/open-contracting/lib-cove-${{ matrix.cove }}.git + git clone https://github.com/OpenDataServices/lib-cove-web.git - name: Install run: | pip install -r requirements_dev.txt + # Temporary fix so we don't try to install libcove from a non-existent + # branch + sed -i '/=libcove/d' cove-${{ matrix.cove}}/requirements_dev.txt pip install -r cove-${{ matrix.cove }}/requirements_dev.txt # Make sure we're using local libs rather than one brought in # via requirements. pip install -e ./lib-cove-${{ matrix.cove }}/ + pip install -e ./lib-cove-web pip install -e . pip list diff --git a/CHANGELOG.md b/CHANGELOG.md index 3be8757..ae2a334 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] +## [0.32.1] - 2024-06-28 + +### Fixed + +- `unique_ids` now doesn't have exponential running time if there's no ID fields https://github.com/OpenDataServices/lib-cove/pull/144 + ## [0.32.0] - 2023-12-19 ### Removed diff --git a/setup.py b/setup.py index 4a399fc..53659d7 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ setup( name="libcove", - version="0.32.0", + version="0.32.1", author="Open Data Services", author_email="code@opendataservices.coop", url="https://github.com/OpenDataServices/lib-cove",