Skip to content

Commit 0e6491c

Browse files
Merge pull request #38 from IntelPython/add-dependabots
Add dependabots
2 parents 96e4b96 + efc4dc3 commit 0e6491c

File tree

5 files changed

+21
-12
lines changed

5 files changed

+21
-12
lines changed

.github/CODEOWNERS

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
* @oleksandr-pavlyk
2+
* @ekomarova
3+
* @xaleryb

.github/dependabot.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "github-actions"
4+
directory: "/"
5+
schedule:
6+
interval: "weekly"

.github/workflows/conda-package.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
matrix:
1919
python: ["3.9", "3.10", "3.11", "3.12"]
2020
steps:
21-
- uses: actions/checkout@v4
21+
- uses: actions/checkout@v4.1.7
2222
with:
2323
fetch-depth: 0
2424

@@ -43,7 +43,7 @@ jobs:
4343
run: conda install conda-build
4444
- name: Build conda package
4545
run: |
46-
CHANNELS="-c conda-forge -c intel --override-channels"
46+
CHANNELS="-c conda-forge -c https://software.repos.intel.com/python/conda --override-channels"
4747
VERSIONS="--python ${{ matrix.python }}"
4848
TEST="--no-test"
4949
@@ -53,21 +53,21 @@ jobs:
5353
$CHANNELS \
5454
conda-recipe
5555
- name: Upload artifact
56-
uses: actions/upload-artifact@v4
56+
uses: actions/upload-artifact@v4.4.0
5757
with:
5858
name: ${{ env.PACKAGE_NAME }} ${{ runner.os }} Python ${{ matrix.python }}
5959
path: /usr/share/miniconda/conda-bld/linux-64/${{ env.PACKAGE_NAME }}-*.tar.bz2
6060

6161
build_windows:
62-
runs-on: windows-latest
62+
runs-on: windows-2019
6363

6464
strategy:
6565
matrix:
6666
python: ['3.9', '3.10', '3.11', '3.12']
6767
env:
6868
conda-bld: C:\Miniconda\conda-bld\win-64\
6969
steps:
70-
- uses: actions/checkout@v4
70+
- uses: actions/checkout@v4.1.7
7171
with:
7272
fetch-depth: 0
7373
- uses: conda-incubator/setup-miniconda@v3
@@ -89,9 +89,9 @@ jobs:
8989
- name: Install conda-build
9090
run: conda install conda-build
9191
- name: Build conda package
92-
run: conda build --no-test --python ${{ matrix.python }} -c intel -c conda-forge --override-channels conda-recipe
92+
run: conda build --no-test --python ${{ matrix.python }} -c https://software.repos.intel.com/python/conda -c conda-forge --override-channels conda-recipe
9393
- name: Upload artifact
94-
uses: actions/upload-artifact@v4
94+
uses: actions/upload-artifact@v4.4.0
9595
with:
9696
name: ${{ env.PACKAGE_NAME }} ${{ runner.os }} Python ${{ matrix.python }}
9797
path: ${{ env.conda-bld }}${{ env.PACKAGE_NAME }}-*.tar.bz2
@@ -107,7 +107,7 @@ jobs:
107107
runner: [ubuntu-latest]
108108
continue-on-error: ${{ matrix.experimental }}
109109
env:
110-
CHANNELS: -c conda-forge -c intel --override-channels
110+
CHANNELS: -c conda-forge -c https://software.repos.intel.com/python/conda --override-channels
111111

112112
steps:
113113
- name: Download artifact
@@ -171,10 +171,10 @@ jobs:
171171
matrix:
172172
python: ['3.9', '3.10', '3.11', '3.12']
173173
experimental: [false]
174-
runner: [windows-latest]
174+
runner: [windows-2019]
175175
continue-on-error: ${{ matrix.experimental }}
176176
env:
177-
CHANNELS: -c conda-forge -c intel --override-channels
177+
CHANNELS: -c conda-forge -c https://software.repos.intel.com/python/conda --override-channels
178178

179179
steps:
180180
- name: Download artifact

conda-recipe/bld.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
@rem Remember to activate compiler, if needed
33

44
set MKLROOT=%CONDA_PREFIX%
5-
%PYTHON% setup.py build --force install --old-and-unmanageable
5+
%PYTHON% setup.py install
66
if errorlevel 1 exit 1

conda-recipe/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
# make sure that compiler has been sourced, if necessary
44

5-
MKLROOT=$CONDA_PREFIX $PYTHON setup.py build --force install --old-and-unmanageable
5+
MKLROOT=$CONDA_PREFIX $PYTHON setup.py install

0 commit comments

Comments
 (0)