Skip to content

Commit 948da79

Browse files
antonwolfyclaude
authored andcommitted
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 <noreply@anthropic.com>
1 parent 335866d commit 948da79

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

conda-recipe-cf/meta.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ test:
4040
- pytest -vv --pyargs mkl
4141

4242
about:
43-
home: http://github.com/IntelPython/mkl-service
43+
home: https://github.com/IntelPython/mkl-service
4444
license: BSD-3-Clause
4545
license_file: LICENSE.txt
4646
summary: Python hooks for Intel® oneAPI Math Kernel Library (oneMKL) runtime control settings

conda-recipe/meta.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ test:
4040
- pytest -vv --pyargs mkl
4141

4242
about:
43-
home: http://github.com/IntelPython/mkl-service
43+
home: https://github.com/IntelPython/mkl-service
4444
license: BSD-3-Clause
4545
license_file: LICENSE.txt
4646
summary: Python hooks for Intel® oneAPI Math Kernel Library (oneMKL) runtime control settings

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,8 @@ requires-python = ">=3.10,<3.15"
6969
test = ["pytest"]
7070

7171
[project.urls]
72-
Download = "http://github.com/IntelPython/mkl-service"
73-
Homepage = "http://github.com/IntelPython/mkl-service"
72+
Download = "https://github.com/IntelPython/mkl-service"
73+
Homepage = "https://github.com/IntelPython/mkl-service"
7474

7575
[tool.black]
7676
line-length = 80

0 commit comments

Comments
 (0)