Skip to content

Commit

Permalink
release 2024.Q4 (#1157)
Browse files Browse the repository at this point in the history
* release 2024.Q4

* remove uv pip install

* hotfix - fix title query
  • Loading branch information
shapiromatron authored Jan 29, 2025
1 parent fe568dc commit 6831239
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 9 deletions.
1 change: 0 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ export PRINT_HELP_PYSCRIPT
BROWSER := python -c "$$BROWSER_PYSCRIPT"

sync-dev: ## Sync dev environment after code checkout
python -m pip install -U pip uv
uv pip install -e ".[dev,docs]"
uv pip install -e client
yarn --cwd frontend
Expand Down
2 changes: 1 addition & 1 deletion client/hawc_client/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
from .summary import SummaryClient
from .vocab import VocabClient

__version__ = "2024.3"
__version__ = "2024.4"
__all__ = ["BaseClient", "HawcClient", "HawcClientException", "HawcServerException"]


Expand Down
1 change: 1 addition & 0 deletions client/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ dependencies = [
[project.urls]
"Bug Tracker" = "https://github.com/shapiromatron/hawc/issues"
Documentation = "https://hawc.readthedocs.io/client/"
Changes = "https://hawc.readthedocs.io/latest/client/#changelog"
"Source Code" = "https://github.com/shapiromatron/hawc"

[build-system]
Expand Down
5 changes: 3 additions & 2 deletions docs/docs/client.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,10 @@ Client tutorials for common operations are below:

### Changelog

#### NEXT (TBD)
#### [2024-4](https://pypi.org/project/hawc-client/2024.4/) (January 2025)

* Added literature tag API {create, update, delete, move}
* Added assessment team member API endpoint to retrieve assessments a user is a member of
* Added literature tag API {create, update, delete, move} to modify tags

#### [2024-3](https://pypi.org/project/hawc-client/2024.3/) (October 2024)

Expand Down
2 changes: 1 addition & 1 deletion hawc/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import os
import sys

__version__ = "2024.3"
__version__ = "2024.4"


def manage():
Expand Down
8 changes: 4 additions & 4 deletions hawc/apps/assessment/managers.py
Original file line number Diff line number Diff line change
Expand Up @@ -340,10 +340,10 @@ def prefetch_content_objects(self):

def filter_title(self, query: str):
filter = (
Q(summary_table__title__icontains=query)
| Q(visual__title__icontains=query)
| Q(datapivot_query__title__icontains=query)
| Q(datapivot_upload__title__icontains=query)
Q(summary_tables__title__icontains=query)
| Q(visuals__title__icontains=query)
| Q(datapivot_queries__title__icontains=query)
| Q(datapivot_uploads__title__icontains=query)
)
return self.filter(filter)

Expand Down

0 comments on commit 6831239

Please sign in to comment.