Skip to content
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
2 changes: 1 addition & 1 deletion .github/pull_request_template.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
- [ ] Run ‚poetry update‘ to get the latest package versions. This will update the poetry.lock file
- [ ] Run ‚poetry export --without-hashes --without development -f requirements.txt -o requirements.txt‘ to update the requirements.txt file
- [ ] (If one of the sphinx packages has been updated, you also need to update docs/requirements.txt)
- [ ] (If poetry itself was updated, update that in the Dockerfile)
- [ ] (If poetry itself was updated, update that in the Dockerfile and installation.rst)
- [ ] If you updated the python version:
- [ ] 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.
- [ ] Update the python version in .github/workflows/: run_tests.yml, build_package.yml, publish_docs.yml, python-package.yml
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# The builder image, used to build the virtual environment
FROM python:3.13-bookworm AS builder

RUN pip install poetry==2.3.1
RUN pip install poetry==2.3.2

# POETRY_CACHE_DIR: When removing the cache folder, make sure this is done in the same RUN command. If it’s done in a
# separate RUN command, the cache will still be part of the previous Docker layer (the one containing poetry install )
Expand Down
3 changes: 2 additions & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@ and the Freie Universität Berlin (FU, Germany).
Leaderboard
-----------

.. image:: docs/_static/img/leaderboard.png
.. image:: _static/img/leaderboard_light.png
:alt: DrEvalPy Leaderboard
:align: center
:width: 70%
2 changes: 1 addition & 1 deletion docs/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ To install DrEvalPy from source, clone the repository and install the package us

git clone https://github.com/daisybio/drevalpy.git
cd drevalpy
mamba create -y -n drevalpy python==3.13 poetry==2.2.1
mamba create -y -n drevalpy python==3.13 poetry==2.3.2
poetry --version
pip install poetry-plugin-export
poetry install
Expand Down
Loading
Loading