Skip to content

Commit b8bd1e2

Browse files
authored
Merge pull request #189 from IntelPython/fix-http-urls
Fix security vulnerability: Change HTTP URLs to HTTPS
2 parents 5d9224d + 7cfc35d commit b8bd1e2

4 files changed

Lines changed: 5 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1111
### Changed
1212

1313
### Fixed
14+
* Changed insecure HTTP URLs to HTTPS in `pyproject.toml` and conda recipe files for improved security
1415

1516
## [2.7.0] (04/16/2026)
1617

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)