From 948da79590519b02a7786b7d87730962ff27a2af Mon Sep 17 00:00:00 2001 From: Anton Volkov Date: Fri, 24 Apr 2026 11:40:19 +0200 Subject: [PATCH] Fix insecure HTTP URLs to HTTPS Changed all GitHub repository URLs from http:// to https:// in project metadata files to address security vulnerability. Insecure HTTP connections are vulnerable to man-in-the-middle attacks. Updated files: - pyproject.toml: Download and Homepage URLs - conda-recipe/meta.yaml: home URL - conda-recipe-cf/meta.yaml: home URL Co-Authored-By: Claude Sonnet 4.5 --- conda-recipe-cf/meta.yaml | 2 +- conda-recipe/meta.yaml | 2 +- pyproject.toml | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/conda-recipe-cf/meta.yaml b/conda-recipe-cf/meta.yaml index c6653f5..1ccfc05 100644 --- a/conda-recipe-cf/meta.yaml +++ b/conda-recipe-cf/meta.yaml @@ -40,7 +40,7 @@ test: - pytest -vv --pyargs mkl about: - home: http://github.com/IntelPython/mkl-service + home: https://github.com/IntelPython/mkl-service license: BSD-3-Clause license_file: LICENSE.txt summary: Python hooks for IntelĀ® oneAPI Math Kernel Library (oneMKL) runtime control settings diff --git a/conda-recipe/meta.yaml b/conda-recipe/meta.yaml index c6653f5..1ccfc05 100644 --- a/conda-recipe/meta.yaml +++ b/conda-recipe/meta.yaml @@ -40,7 +40,7 @@ test: - pytest -vv --pyargs mkl about: - home: http://github.com/IntelPython/mkl-service + home: https://github.com/IntelPython/mkl-service license: BSD-3-Clause license_file: LICENSE.txt summary: Python hooks for IntelĀ® oneAPI Math Kernel Library (oneMKL) runtime control settings diff --git a/pyproject.toml b/pyproject.toml index fcf5cf3..4f2a1b4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -69,8 +69,8 @@ requires-python = ">=3.10,<3.15" test = ["pytest"] [project.urls] -Download = "http://github.com/IntelPython/mkl-service" -Homepage = "http://github.com/IntelPython/mkl-service" +Download = "https://github.com/IntelPython/mkl-service" +Homepage = "https://github.com/IntelPython/mkl-service" [tool.black] line-length = 80