Skip to content

Commit ef09add

Browse files
authored
Merge branch 'master' into use-meson-build
2 parents 11e624e + 462433a commit ef09add

7 files changed

Lines changed: 11 additions & 10 deletions

File tree

.github/workflows/conda-package-cf.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ jobs:
101101
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
102102
with:
103103
fetch-depth: 0
104-
- uses: conda-incubator/setup-miniconda@fc2d68f6413eb2d87b895e92f8584b5b94a10167 # v3.3.0
104+
- uses: conda-incubator/setup-miniconda@8ee1f361103df19b6f8c8655fd3967a8ecb162d5 # v4.0.1
105105
with:
106106
miniforge-version: latest
107107
activate-environment: build
@@ -240,7 +240,7 @@ jobs:
240240
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
241241
with:
242242
name: ${{ env.PACKAGE_NAME }} ${{ runner.os }} Python ${{ matrix.python }}
243-
- uses: conda-incubator/setup-miniconda@fc2d68f6413eb2d87b895e92f8584b5b94a10167 # v3.3.0
243+
- uses: conda-incubator/setup-miniconda@8ee1f361103df19b6f8c8655fd3967a8ecb162d5 # v4.0.1
244244
with:
245245
miniforge-version: latest
246246
channels: conda-forge

.github/workflows/conda-package.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ jobs:
101101
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
102102
with:
103103
fetch-depth: 0
104-
- uses: conda-incubator/setup-miniconda@fc2d68f6413eb2d87b895e92f8584b5b94a10167 # v3.3.0
104+
- uses: conda-incubator/setup-miniconda@8ee1f361103df19b6f8c8655fd3967a8ecb162d5 # v4.0.1
105105
with:
106106
miniforge-version: latest
107107
activate-environment: build
@@ -240,7 +240,7 @@ jobs:
240240
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
241241
with:
242242
name: ${{ env.PACKAGE_NAME }} ${{ runner.os }} Python ${{ matrix.python }}
243-
- uses: conda-incubator/setup-miniconda@fc2d68f6413eb2d87b895e92f8584b5b94a10167 # v3.3.0
243+
- uses: conda-incubator/setup-miniconda@8ee1f361103df19b6f8c8655fd3967a8ecb162d5 # v4.0.1
244244
with:
245245
miniforge-version: latest
246246
channels: conda-forge

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ repos:
5050
exclude: "_vendored/conv_template.py"
5151

5252
- repo: https://github.com/pre-commit/mirrors-clang-format
53-
rev: v22.1.3
53+
rev: v22.1.4
5454
hooks:
5555
- id: clang-format
5656
args: ["-i"]
@@ -71,7 +71,7 @@ repos:
7171
- flake8-bugbear==24.4.26
7272

7373
- repo: https://github.com/pycqa/isort
74-
rev: 8.0.1
74+
rev: 9.0.0a3
7575
hooks:
7676
- id: isort
7777
name: isort (python)

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
@@ -42,7 +42,7 @@ test:
4242
- pytest -vv --pyargs mkl
4343

4444
about:
45-
home: http://github.com/IntelPython/mkl-service
45+
home: https://github.com/IntelPython/mkl-service
4646
license: BSD-3-Clause
4747
license_file: LICENSE.txt
4848
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
@@ -43,7 +43,7 @@ test:
4343
- pytest -vv --pyargs mkl
4444

4545
about:
46-
home: http://github.com/IntelPython/mkl-service
46+
home: https://github.com/IntelPython/mkl-service
4747
license: BSD-3-Clause
4848
license_file: LICENSE.txt
4949
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
@@ -67,8 +67,8 @@ requires-python = ">=3.10,<3.15"
6767
test = ["pytest"]
6868

6969
[project.urls]
70-
Download = "http://github.com/IntelPython/mkl-service"
71-
Homepage = "http://github.com/IntelPython/mkl-service"
70+
Download = "https://github.com/IntelPython/mkl-service"
71+
Homepage = "https://github.com/IntelPython/mkl-service"
7272

7373
[tool.black]
7474
line-length = 80

0 commit comments

Comments
 (0)