Skip to content
Snippets Groups Projects

Add pre commit improve tox setup

Merged Corné Lukken requested to merge add-pre-commit-improve-tox-setup-2 into main
Compare and
19 files
+ 438
197
Compare changes
  • Side-by-side
  • Inline

Files

FROM python:3.11
# This dockerfile is used throughout steps of the CI/CD pipeline
# It contains dependencies to execute the template and run tests
FROM python:3.13
RUN python -m pip install --upgrade pip
RUN pip install --upgrade cookiecutter tox twine cibuildwheel==2.13.1 cookiecutter
RUN python -m pip install --upgrade cibuildwheel>=2.23.0 cookiecutter tox twine
RUN curl -sSL https://get.docker.com/ | sh
Loading