-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #28 from zbw/26-upgrade-gunicorn-and-citation
Update version of gunicorn
- Loading branch information
Showing
4 changed files
with
10 additions
and
4 deletions.
There are no files selected for viewing
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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/ | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
|