Skip to content

Commit 9fd758b

Browse files
Merge pull request #114 from daisybio/development
Including curve-curator by default now
2 parents d941da5 + 453a458 commit 9fd758b

File tree

5 files changed

+65
-59
lines changed

5 files changed

+65
-59
lines changed

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# https://medium.com/@albertazzir/blazing-fast-python-docker-builds-with-poetry-a78a66f5aed0
33

44
# The builder image, used to build the virtual environment
5-
FROM python:3.11-buster as builder
5+
FROM python:3.11-buster AS builder
66

77
RUN pip install poetry==2.0.0
88

@@ -22,10 +22,10 @@ COPY pyproject.toml poetry.lock ./
2222
# Because poetry will complain if a README.md is not found, we create a dummy one.
2323
RUN touch README.md
2424

25-
RUN poetry install --without development --extras=fit --no-root && rm -rf $POETRY_CACHE_DIR
25+
RUN poetry install --without development --no-root && rm -rf $POETRY_CACHE_DIR
2626

2727
# The runtime image, used to run the code
28-
FROM python:3.11-slim-buster as runtime
28+
FROM python:3.11-slim-buster AS runtime
2929

3030
LABEL image.author.name="Judith Bernett"
3131
LABEL image.author.email="judith.bernett@tum.de"

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,9 @@
5656
# the built documents.
5757
#
5858
# The short X.Y version.
59-
version = "1.1.2"
59+
version = "1.1.3"
6060
# The full version, including alpha/beta/rc tags.
61-
release = "1.1.2"
61+
release = "1.1.3"
6262

6363
# The language for content autogenerated by Sphinx. Refer to documentation
6464
# for a list of supported languages.

0 commit comments

Comments
 (0)