Skip to content

Commit 5cbf488

Browse files
authored
Merge pull request #939 from hkad98/jkd/chore
Bump dev/test dependencies
2 parents f97c924 + de5c381 commit 5cbf488

File tree

17 files changed

+22
-74
lines changed

17 files changed

+22
-74
lines changed

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@
77
exclude: (gooddata-api-client|.*\.snapshot\..*|.openapi-generator/custom_templates)
88
repos:
99
- repo: https://github.com/pre-commit/pre-commit-hooks
10-
rev: v4.5.0
10+
rev: v5.0.0
1111
hooks:
1212
- id: trailing-whitespace
1313
- id: end-of-file-fixer
1414
- id: check-added-large-files
1515
args: [ '--maxkb=890' ]
1616
- id: check-case-conflict
1717
- repo: https://github.com/astral-sh/ruff-pre-commit
18-
rev: v0.3.5
18+
rev: v0.8.6
1919
hooks:
2020
# Run the linter.
2121
- id: ruff

dev-requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
-r ./tox-requirements.txt
22
-r ./release-requirements.txt
3-
pre-commit~=3.8.0
3+
pre-commit~=4.0.1
44

55
-r ./fmt-requirements.txt
66

docs/Dockerfile

Lines changed: 4 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -1,41 +1,15 @@
1-
FROM python:3.13-slim AS python-stage
2-
3-
COPY . data
4-
5-
WORKDIR data
6-
7-
RUN pip install --no-cache-dir -r scripts/script-requirements.txt
8-
9-
WORKDIR docs
10-
11-
RUN python3 ../scripts/docs/json_builder.py && \
12-
mkdir versioned_docs/latest && \
13-
mv -f data.json versioned_docs/latest && \
14-
python3 ../scripts/docs/python_ref_builder.py api_spec.toml versioned_docs/latest/data.json latest versioned_docs
15-
161
FROM node:20.18.0-bookworm-slim
172

18-
COPY docs docs
19-
20-
COPY --from=python-stage data/docs/versioned_docs/latest/api-reference docs/content/en/latest/api-reference
21-
COPY --from=python-stage data/docs/versioned_docs/latest/pandas docs/content/en/latest/pandas
22-
23-
243
RUN apt-get update && \
254
apt-get install -y git make golang-go curl && \
265
npm install -g hugo-extended@0.117.0 && \
276
apt-get clean && \
28-
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* && \
29-
mkdir -p docs/versioned_docs/latest
30-
31-
COPY --from=python-stage data/docs/versioned_docs/latest/links.json docs/versioned_docs/latest
32-
COPY --from=python-stage data/docs/versioned_docs/latest/data.json docs/versioned_docs/latest
7+
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
338

34-
COPY docs/content/en/latest/ docs/versioned_docs/latest/
9+
COPY docs docs
3510

3611
WORKDIR docs
37-
RUN npm install && \
38-
rm -rf node_modules
12+
RUN npm install
3913

4014
# accessible on http://localhost:1313/latest/
41-
ENTRYPOINT ["hugo", "server", "-e", "dev", "--bind", "0.0.0.0"]
15+
ENTRYPOINT ["hugo", "server", "--bind", "0.0.0.0"]

docs/config/dev/config.toml

Lines changed: 0 additions & 10 deletions
This file was deleted.

docs/config/dev/params.toml

Lines changed: 0 additions & 16 deletions
This file was deleted.

fmt-requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
ruff==0.6.5
1+
ruff==0.8.6

gooddata-dbt/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
pyyaml>=5.1
1+
pyyaml>=6.0
22
attrs>=21.4.0,<=24.2.0
33
cattrs>=22.1.0,<=24.1.1
44
requests~=2.32.0

gooddata-dbt/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
REQUIRES = [
1010
"gooddata-sdk~=1.33.0",
11-
"pyyaml>=5.1",
11+
"pyyaml>=6.0",
1212
"attrs>=21.4.0,<=24.2.0",
1313
"cattrs>=22.1.0,<=24.1.1",
1414
"requests~=2.32.0",

gooddata-dbt/test-requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
pytest~=8.3.3
2-
pytest-cov~=5.0.0
2+
pytest-cov~=6.0.0

gooddata-fdw/test-requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
pytest~=8.3.3
2-
pytest-cov~=5.0.0
3-
vcrpy~=6.0.1
2+
pytest-cov~=6.0.0
3+
vcrpy~=7.0.0
44
# TODO - Bump the version together with bumping the version of openapi generator
55
urllib3==1.26.9
66
pyyaml

0 commit comments

Comments
 (0)