Skip to content

Commit d1b57b7

Browse files
authored
Standardize string quotes in pyproject.toml dependencies across multiple projects. (#2532)
1 parent 79ea4a9 commit d1b57b7

File tree

3 files changed

+36
-36
lines changed

3 files changed

+36
-36
lines changed

jupyter/trustyai/ubi9-python-3.12/pyproject.toml

Lines changed: 32 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -11,50 +11,50 @@ dependencies = [
1111
# More information available at:
1212
# - https://pypi.org/project/trustyai/
1313
# - https://github.com/trustyai-explainability/trustyai-explainability-python/blob/main/requirements.txt
14-
'transformers~=4.56.1',
15-
'datasets~=4.0.0',
14+
"transformers~=4.56.1",
15+
"datasets~=4.0.0",
1616
"accelerate~=1.10.1; platform_machine != 'ppc64le'",
17-
'trustyai~=0.6.2',
17+
"trustyai~=0.6.2",
1818
# Datascience and useful extensions
19-
'boto3~=1.40.27',
20-
'kafka-python-ng~=2.2.3',
21-
'kfp~=2.14.3',
22-
'matplotlib~=3.10.6', # Should be pinned down to this version in order to be compatible with trustyai
23-
'numpy~=1.26.4', # Should be pinned down to this version in order to be compatible with trustyai
24-
'pandas~=1.5.3', # Should be pinned down to this version in order to be compatible with trustyai
25-
'plotly~=6.3.0',
26-
'scikit-learn~=1.7.2', # Should be pinned down to this version in order to be compatible with trustyai
27-
'scipy~=1.16.1',
28-
'skl2onnx~=1.19.1',
29-
'onnxconverter-common~=1.13.0', # Required for skl2onnx, as upgraded version is not compatible with protobuf
19+
"boto3~=1.40.27",
20+
"kafka-python-ng~=2.2.3",
21+
"kfp~=2.14.3",
22+
"matplotlib~=3.10.6", # Should be pinned down to this version in order to be compatible with trustyai
23+
"numpy~=1.26.4", # Should be pinned down to this version in order to be compatible with trustyai
24+
"pandas~=1.5.3", # Should be pinned down to this version in order to be compatible with trustyai
25+
"plotly~=6.3.0",
26+
"scikit-learn~=1.7.2", # Should be pinned down to this version in order to be compatible with trustyai
27+
"scipy~=1.16.1",
28+
"skl2onnx~=1.19.1",
29+
"onnxconverter-common~=1.13.0", # Required for skl2onnx, as upgraded version is not compatible with protobuf
3030
"codeflare-sdk~=0.31.1; platform_machine != 'ppc64le'",
31-
'kubeflow-training==1.9.3',
31+
"kubeflow-training==1.9.3",
3232

3333
# DB connectors
34-
'pymongo~=4.14.1',
35-
'psycopg~=3.2.10',
36-
'pyodbc~=5.2.0',
37-
'mysql-connector-python~=9.4.0',
34+
"pymongo~=4.14.1",
35+
"psycopg~=3.2.10",
36+
"pyodbc~=5.2.0",
37+
"mysql-connector-python~=9.4.0",
3838

3939
# JupyterLab packages
4040
"odh-elyra==4.2.4",
4141
"odh-jupyter-trash-cleanup==0.1.1",
4242

43-
'jupyterlab==4.4.7',
44-
'jupyter-bokeh~=3.0.5', # trustyai 0.6.1 depends on jupyter-bokeh~=3.0.5
45-
'jupyter-server~=2.17.0',
46-
'jupyter-server-proxy~=4.4.0',
47-
'jupyter-server-terminals~=0.5.3',
48-
'jupyterlab-git~=0.51.2',
49-
'jupyterlab-lsp~=5.1.1',
50-
'jupyterlab-widgets~=3.0.15',
51-
'jupyter-resource-usage~=1.1.1',
52-
'nbdime~=4.0.2',
53-
'nbgitpuller~=1.2.2',
43+
"jupyterlab==4.4.7",
44+
"jupyter-bokeh~=3.0.5", # trustyai 0.6.1 depends on jupyter-bokeh~=3.0.5
45+
"jupyter-server~=2.17.0",
46+
"jupyter-server-proxy~=4.4.0",
47+
"jupyter-server-terminals~=0.5.3",
48+
"jupyterlab-git~=0.51.2",
49+
"jupyterlab-lsp~=5.1.1",
50+
"jupyterlab-widgets~=3.0.15",
51+
"jupyter-resource-usage~=1.1.1",
52+
"nbdime~=4.0.2",
53+
"nbgitpuller~=1.2.2",
5454

5555
# Base packages
56-
'wheel~=0.45.1',
57-
'setuptools~=80.9.0',
56+
"wheel~=0.45.1",
57+
"setuptools~=80.9.0",
5858
]
5959

6060
[tool.uv]

rstudio/c9s-python-3.11/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ requires-python = "==3.11.*"
55

66
dependencies = [
77
# Base packages
8-
'wheel~=0.45.1',
9-
'setuptools~=80.9.0',
8+
"wheel~=0.45.1",
9+
"setuptools~=80.9.0",
1010
]
1111

1212
[tool.uv]

rstudio/rhel9-python-3.11/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ requires-python = "==3.11.*"
55

66
dependencies = [
77
# Base packages
8-
'wheel~=0.45.1',
9-
'setuptools~=80.9.0',
8+
"wheel~=0.45.1",
9+
"setuptools~=80.9.0",
1010
]
1111

1212
[tool.uv]

0 commit comments

Comments
 (0)