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

Update version of gunicorn #28

Merged
merged 2 commits into from
Oct 10, 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
10 changes: 8 additions & 2 deletions CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,17 @@ authors:
- family-names: Fürneisen
given-names: Moritz
affiliation: "ZBW - Leibniz Information Centre for Economics"
- family-names: Rajendram Bashyam
given-names: Lakshmi
affiliation: "ZBW - Leibniz Information Centre for Economics"
- family-names: Majal
given-names: Ghulam Mustafa
affiliation: "ZBW - Leibniz Information Centre for Economics"
title: "qualle (a framework to predict the quality of a multi-label classification result)"
abstract: "This framework allows to train a model which can be used to predict the quality of the result of applying a multi-label classification (MLC) method on a document. In this implementation, only the recall is predicted for a document, but in principle any document-level quality estimation (such as the prediction of precision) can be implemented analogously."
version: 0.3.0
version: 0.3.1
license: Apache-2.0
date-released: 2024-09-10
date-released: 2024-10-10
repository-code: "https://github.com/zbw/qualle"
contact:
- name: "Automatization of subject indexing using methods from artificial intelligence (AutoSE)"
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ LABEL maintainer="AutoSE <[email protected]>"
ARG POETRY_VIRTUALENVS_CREATE=false

RUN pip install --upgrade pip --no-cache-dir
RUN pip install poetry gunicorn==22.0.* "uvicorn[standard]==0.22" --no-cache-dir
RUN pip install poetry gunicorn==23.0.* "uvicorn[standard]==0.22" --no-cache-dir

COPY pyproject.toml poetry.lock README.md /app/

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "qualle"
version = "0.3.0-dev"
version = "0.3.1-dev"
description = "A framework to predict the quality of a multi-label classification result"
authors = ["AutoSE <[email protected]>"]
license = "Apache-2.0"
Expand Down