Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed

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

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

Expand Down
2 changes: 1 addition & 1 deletion conda-recipe-cf/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion conda-recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading