Skip to content

Commit 2a548a6

Browse files
committed
version update
1 parent 3a67250 commit 2a548a6

File tree

6 files changed

+698
-591
lines changed

6 files changed

+698
-591
lines changed

.github/pull_request_template.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
- [ ] Run ‚poetry update‘ to get the latest package versions. This will update the poetry.lock file
2727
- [ ] Run ‚poetry export --without-hashes --without development -f requirements.txt -o requirements.txt‘ to update the requirements.txt file
2828
- [ ] (If one of the sphinx packages has been updated, you also need to update docs/requirements.txt)
29-
- [ ] (If poetry itself was updated, update that in the Dockerfile)
29+
- [ ] (If poetry itself was updated, update that in the Dockerfile and installation.rst)
3030
- [ ] If you updated the python version:
3131
- [ ] Update the Dockerfile so that it always runs on the latest python version. Watch out: the ‚builder‘ is the full python, the ‚runtime‘ is a slim python build.
3232
- [ ] Update the python version in .github/workflows/: run_tests.yml, build_package.yml, publish_docs.yml, python-package.yml

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# The builder image, used to build the virtual environment
55
FROM python:3.13-bookworm AS builder
66

7-
RUN pip install poetry==2.2.1
7+
RUN pip install poetry==2.3.2
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 )

README.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,7 @@ and the Freie Universität Berlin (FU, Germany).
7575
Leaderboard
7676
-----------
7777

78-
.. image:: docs/_static/img/leaderboard.png
78+
.. image:: _static/img/leaderboard_light.png
7979
:alt: DrEvalPy Leaderboard
8080
:align: center
81+
:width: 70%

docs/installation.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ To install DrEvalPy from source, clone the repository and install the package us
7373
7474
git clone https://github.com/daisybio/drevalpy.git
7575
cd drevalpy
76-
mamba create -y -n drevalpy python==3.13 poetry==2.2.1
76+
mamba create -y -n drevalpy python==3.13 poetry==2.3.2
7777
poetry --version
7878
pip install poetry-plugin-export
7979
poetry install

0 commit comments

Comments
 (0)