Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

release: 0.32.1 #146

Merged
merged 3 commits into from
Jul 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What's this about?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is because cove-ocds pulls in a fork of this repo that no longer exists. We install it as part of our integration tests, but can delete the line from requirements.txt as we explicitly install this version of the library.

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

Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name="libcove",
version="0.32.0",
version="0.32.1",
author="Open Data Services",
author_email="[email protected]",
url="https://github.com/OpenDataServices/lib-cove",
Expand Down
Loading