File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -3,31 +3,17 @@ updates:
33- package-ecosystem : pip
44 directory : " /"
55 schedule :
6- interval : daily
6+ interval : weekly
7+ cooldown :
8+ default-days : 7
79 open-pull-requests-limit : 10
8- ignore :
9- - dependency-name : docutils
10- versions :
11- - " 0.16"
12- - " 0.17"
13- - dependency-name : responses
14- versions :
15- - 0.12.1
16- - 0.13.0
17- - 0.13.1
18- - 0.13.2
19- - dependency-name : " boto3"
20- - dependency-name : " boto3-stubs"
21- - dependency-name : " botocore"
22- - dependency-name : " botocore-stubs"
23- - dependency-name : lxml
24- versions :
25- - 4.6.2
2610- package-ecosystem : github-actions
2711 directory : " /"
2812 groups :
2913 github-actions :
3014 patterns :
3115 - " *" # Group all Actions updates into a single larger pull request
3216 schedule :
33- interval : daily
17+ interval : weekly
18+ cooldown :
19+ default-days : 7
Original file line number Diff line number Diff line change @@ -32,7 +32,10 @@ RUN case $(uname -m) in \
3232RUN mkdir /code
3333WORKDIR /code
3434
35- RUN pip --no-cache-dir --disable-pip-version-check install --upgrade pip setuptools wheel
35+ COPY requirements-bootstrap.txt /code/
36+
37+ RUN pip --no-cache-dir --disable-pip-version-check \
38+ install -r requirements-bootstrap.txt
3639
3740COPY pyproject.toml /code/
3841
Original file line number Diff line number Diff line change @@ -33,15 +33,17 @@ RUN case $(uname -m) in \
3333RUN mkdir /code
3434WORKDIR /code
3535
36- RUN pip --no-cache-dir --disable-pip-version-check install --upgrade pip setuptools wheel
36+ COPY requirements-bootstrap.txt /code/
3737
38- COPY pyproject.toml /code/
38+ RUN pip --no-cache-dir --disable-pip-version-check \
39+ install -r requirements-bootstrap.txt
40+
41+ COPY requirements-prod.txt /code/
3942
4043RUN --mount=type=cache,target=/root/.cache/pip \
4144 set -x \
4245 && pip --disable-pip-version-check \
43- install \
44- '.[prod]'
46+ install -r requirements-prod.txt
4547
4648COPY . /code/
4749
Original file line number Diff line number Diff line change 1+ --only-binary :all:
2+
3+ pip
4+ setuptools
5+ wheel
Original file line number Diff line number Diff line change 1+ #
2+ # This file is autogenerated by pip-compile with Python 3.12
3+ # by the following command:
4+ #
5+ # pip-compile --allow-unsafe --generate-hashes --output-file=requirements-bootstrap.txt requirements-bootstrap.in
6+ #
7+ --only-binary :all:
8+
9+ packaging==26.1 \
10+ --hash=sha256:5d9c0669c6285e491e0ced2eee587eaf67b670d94a19e94e3984a481aba6802f
11+ # via wheel
12+ wheel==0.47.0 \
13+ --hash=sha256:212281cab4dff978f6cedd499cd893e1f620791ca6ff7107cf270781e587eced
14+ # via -r requirements-bootstrap.in
15+
16+ # The following packages are considered to be unsafe in a requirements file:
17+ pip==26.0.1 \
18+ --hash=sha256:bdb1b08f4274833d62c1aa29e20907365a2ceb950410df15fc9521bad440122b
19+ # via -r requirements-bootstrap.in
20+ setuptools==82.0.1 \
21+ --hash=sha256:a59e362652f08dcd477c78bb6e7bd9d80a7995bc73ce773050228a348ce2e5bb
22+ # via -r requirements-bootstrap.in
Original file line number Diff line number Diff line change 1+ --only-binary :all:
2+ --no-binary django-apptemplates
3+ --no-binary django-translation-aliases
4+ --no-binary django-haystack
5+ --no-binary django-tastypie
6+ --no-binary sgmllib3k
7+ --no-binary docopt
8+ --no-binary odfpy
9+
10+ .[prod]
Load Diff Large diffs are not rendered by default.
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments