Skip to content

Commit 68f2aa8

Browse files
committed
Merge branch 'main' of github.com:daisybio/drevalpy
2 parents 9bf52d6 + db5fdf2 commit 68f2aa8

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
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.10-buster as builder
5+
FROM python:3.11-buster as builder
66

7-
RUN pip install poetry==1.8.4
7+
RUN pip install poetry==2.0.0
88

99
# POETRY_CACHE_DIR: When removing the cache folder, make sure this is done in the same RUN command. If it’s done in a
1010
# separate RUN command, the cache will still be part of the previous Docker layer (the one containing poetry install )
@@ -25,13 +25,13 @@ RUN touch README.md
2525
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.10-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"
3232

3333
# Copy installed dependencies from the builder image
34-
COPY --from=builder /usr/local/lib/python3.10/site-packages /usr/local/lib/python3.10/site-packages
34+
COPY --from=builder /usr/local/lib/python3.11/site-packages /usr/local/lib/python3.11/site-packages
3535
COPY --from=builder /usr/local/bin /usr/local/bin
3636

3737
# Copy all relevant code

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.0"
59+
version = "1.1.1"
6060
# The full version, including alpha/beta/rc tags.
61-
release = "1.1.0"
61+
release = "1.1.1"
6262

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

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "drevalpy"
3-
version = "1.1.0"
3+
version = "1.1.1"
44
description = "Drug response evaluation of cancer cell line drug response models in a fair setting"
55
authors = ["DrEvalPy development team"]
66
license = "GPL-3.0"

0 commit comments

Comments
 (0)