Skip to content

Commit c0b1dba

Browse files
github-actions[bot]atheo89
authored andcommitted
Update Pipfile.lock files by piplock-renewal.yaml action
1 parent a6a9f95 commit c0b1dba

File tree

3 files changed

+45
-59
lines changed

3 files changed

+45
-59
lines changed

Makefile

Lines changed: 32 additions & 46 deletions
Original file line numberDiff line numberDiff line change
@@ -390,62 +390,48 @@ validate-rstudio-image: bin/kubectl
390390

391391
# This recipe used mainly from the Pipfile.locks Renewal Action
392392
# Default Python version
393-
# PYTHON_VERSION ?= 3.11
394-
# ROOT_DIR := $(shell pwd)
395-
# ifeq ($(PYTHON_VERSION), 3.11)
396-
# BASE_DIRS := \
397-
# jupyter/minimal/ubi9-python-$(PYTHON_VERSION) \
398-
# jupyter/datascience/ubi9-python-$(PYTHON_VERSION) \
399-
# jupyter/pytorch/ubi9-python-$(PYTHON_VERSION) \
400-
# jupyter/tensorflow/ubi9-python-$(PYTHON_VERSION) \
401-
# jupyter/trustyai/ubi9-python-$(PYTHON_VERSION) \
402-
# jupyter/rocm/tensorflow/ubi9-python-$(PYTHON_VERSION) \
403-
# jupyter/rocm/pytorch/ubi9-python-$(PYTHON_VERSION) \
404-
# codeserver/ubi9-python-$(PYTHON_VERSION) \
405-
# rstudio/rhel9-python-$(PYTHON_VERSION) \
406-
# rstudio/c9s-python-$(PYTHON_VERSION) \
407-
# runtimes/minimal/ubi9-python-$(PYTHON_VERSION) \
408-
# runtimes/datascience/ubi9-python-$(PYTHON_VERSION) \
409-
# runtimes/pytorch/ubi9-python-$(PYTHON_VERSION) \
410-
# runtimes/tensorflow/ubi9-python-$(PYTHON_VERSION) \
411-
# runtimes/rocm-tensorflow/ubi9-python-$(PYTHON_VERSION) \
412-
# runtimes/rocm-pytorch/ubi9-python-$(PYTHON_VERSION)
413-
# else ifeq ($(PYTHON_VERSION), 3.12)
414-
# BASE_DIRS := \
415-
# jupyter/minimal/ubi9-python-$(PYTHON_VERSION) \
416-
# jupyter/datascience/ubi9-python-$(PYTHON_VERSION) \
417-
# jupyter/pytorch/ubi9-python-$(PYTHON_VERSION) \
418-
# jupyter/tensorflow/ubi9-python-$(PYTHON_VERSION) \
419-
# jupyter/trustyai/ubi9-python-$(PYTHON_VERSION) \
420-
# jupyter/rocm/pytorch/ubi9-python-$(PYTHON_VERSION) \
421-
# codeserver/ubi9-python-$(PYTHON_VERSION) \
422-
# runtimes/minimal/ubi9-python-$(PYTHON_VERSION) \
423-
# runtimes/datascience/ubi9-python-$(PYTHON_VERSION) \
424-
# runtimes/pytorch/ubi9-python-$(PYTHON_VERSION) \
425-
# runtimes/tensorflow/ubi9-python-$(PYTHON_VERSION) \
426-
# runtimes/rocm-pytorch/ubi9-python-$(PYTHON_VERSION)
427-
# # runtimes/rocm-tensorflow/ubi9-python-$(PYTHON_VERSION)
428-
# # jupyter/rocm/tensorflow/ubi9-python-$(PYTHON_VERSION)
429-
# # rstudio/rhel9-python-$(PYTHON_VERSION)
430-
# # rstudio/c9s-python-$(PYTHON_VERSION)
431-
# else
432-
# $(error Invalid Python version $(PYTHON_VERSION))
433-
# endif
434-
435393
PYTHON_VERSION ?= 3.11
436394
ROOT_DIR := $(shell pwd)
437395
ifeq ($(PYTHON_VERSION), 3.11)
438396
BASE_DIRS := \
439-
jupyter/trustyai/ubi9-python-$(PYTHON_VERSION)
440-
397+
jupyter/minimal/ubi9-python-$(PYTHON_VERSION) \
398+
jupyter/datascience/ubi9-python-$(PYTHON_VERSION) \
399+
jupyter/pytorch/ubi9-python-$(PYTHON_VERSION) \
400+
jupyter/tensorflow/ubi9-python-$(PYTHON_VERSION) \
401+
jupyter/trustyai/ubi9-python-$(PYTHON_VERSION) \
402+
jupyter/rocm/tensorflow/ubi9-python-$(PYTHON_VERSION) \
403+
jupyter/rocm/pytorch/ubi9-python-$(PYTHON_VERSION) \
404+
codeserver/ubi9-python-$(PYTHON_VERSION) \
405+
rstudio/rhel9-python-$(PYTHON_VERSION) \
406+
rstudio/c9s-python-$(PYTHON_VERSION) \
407+
runtimes/minimal/ubi9-python-$(PYTHON_VERSION) \
408+
runtimes/datascience/ubi9-python-$(PYTHON_VERSION) \
409+
runtimes/pytorch/ubi9-python-$(PYTHON_VERSION) \
410+
runtimes/tensorflow/ubi9-python-$(PYTHON_VERSION) \
411+
runtimes/rocm-tensorflow/ubi9-python-$(PYTHON_VERSION) \
412+
runtimes/rocm-pytorch/ubi9-python-$(PYTHON_VERSION)
441413
else ifeq ($(PYTHON_VERSION), 3.12)
442414
BASE_DIRS := \
443-
jupyter/trustyai/ubi9-python-$(PYTHON_VERSION)
415+
jupyter/minimal/ubi9-python-$(PYTHON_VERSION) \
416+
jupyter/datascience/ubi9-python-$(PYTHON_VERSION) \
417+
jupyter/pytorch/ubi9-python-$(PYTHON_VERSION) \
418+
jupyter/tensorflow/ubi9-python-$(PYTHON_VERSION) \
419+
jupyter/trustyai/ubi9-python-$(PYTHON_VERSION) \
420+
jupyter/rocm/pytorch/ubi9-python-$(PYTHON_VERSION) \
421+
codeserver/ubi9-python-$(PYTHON_VERSION) \
422+
runtimes/minimal/ubi9-python-$(PYTHON_VERSION) \
423+
runtimes/datascience/ubi9-python-$(PYTHON_VERSION) \
424+
runtimes/pytorch/ubi9-python-$(PYTHON_VERSION) \
425+
runtimes/tensorflow/ubi9-python-$(PYTHON_VERSION) \
426+
runtimes/rocm-pytorch/ubi9-python-$(PYTHON_VERSION)
427+
# runtimes/rocm-tensorflow/ubi9-python-$(PYTHON_VERSION)
428+
# jupyter/rocm/tensorflow/ubi9-python-$(PYTHON_VERSION)
429+
# rstudio/rhel9-python-$(PYTHON_VERSION)
430+
# rstudio/c9s-python-$(PYTHON_VERSION)
444431
else
445432
$(error Invalid Python version $(PYTHON_VERSION))
446433
endif
447434

448-
449435
# Default value is false, can be overiden
450436
# The below directories are not supported on tier-1
451437
INCLUDE_OPT_DIRS ?= false

jupyter/trustyai/ubi9-python-3.12/Pipfile.lock

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

jupyter/trustyai/ubi9-python-3.12/requirements.txt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -789,9 +789,9 @@ fsspec[http]==2024.12.0; python_version >= '3.8' \
789789
gitdb==4.0.12; python_version >= '3.7' \
790790
--hash=sha256:5ef71f855d191a3326fcfbc0d5da835f26b13fbcba60c32c21091c349ffdb571 \
791791
--hash=sha256:67073e15955400952c6565cc3e707c554a4eea2e428946f7a4c162fab9bd9bcf
792-
gitpython==3.1.44; python_version >= '3.7' \
793-
--hash=sha256:9e0e10cda9bed1ee64bc9a6de50e7e38a9c9943241cd7f585f6df3ed28011110 \
794-
--hash=sha256:c87e30b26253bf5418b01b0660f818967f3c503193838337fe5e573331249269
792+
gitpython==3.1.45; python_version >= '3.7' \
793+
--hash=sha256:85b0ee964ceddf211c41b9f27a49086010a190fd8132a24e21f362a4b36a791c \
794+
--hash=sha256:8908cb2e02fb3b93b7eb0f2827125cb699869470432cc885f019b8fd0fccff77
795795
google-api-core==2.25.1; python_version >= '3.7' \
796796
--hash=sha256:8a2a56c1fef82987a524371f99f3bd0143702fecc670c72e600c1cda6bf8dbb7 \
797797
--hash=sha256:d2aaa0b13c78c61cb3f4282c464c046e45fbd75755683c9c525e6e8f7ed0a5e8
@@ -2974,9 +2974,9 @@ tqdm==4.67.1; python_version >= '3.7' \
29742974
traitlets==5.14.3; python_version >= '3.8' \
29752975
--hash=sha256:9ed0579d3502c94b4b3732ac120375cda96f923114522847de4b3bb98b96b6b7 \
29762976
--hash=sha256:b74e89e397b1ed28cc831db7aea759ba6640cb3de13090ca145426688ff1ac4f
2977-
transformers==4.50.3; python_full_version >= '3.9.0' \
2978-
--hash=sha256:1d795d24925e615a8e63687d077e4f7348c2702eb87032286eaa76d83cdc684f \
2979-
--hash=sha256:6111610a43dec24ef32c3df0632c6b25b07d9711c01d9e1077bdd2ff6b14a38c
2977+
transformers==4.52.4; python_full_version >= '3.9.0' \
2978+
--hash=sha256:203f5c19416d5877e36e88633943761719538a25d9775977a24fe77a1e5adfc7 \
2979+
--hash=sha256:aff3764441c1adc192a08dba49740d3cbbcb72d850586075aed6bd89b98203e6
29802980
triton==3.2.0; platform_system == 'Linux' and platform_machine == 'x86_64' \
29812981
--hash=sha256:30ceed0eff2c4a73b14eb63e052992f44bbdf175f3fad21e1ac8097a772de7ee \
29822982
--hash=sha256:8009a1fb093ee8546495e96731336a33fb8856a38e45bb4ab6affd6dbc3ba220 \

0 commit comments

Comments
 (0)