Skip to content

Use a requirement file to install dpctl wheel package #2413

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Apr 9, 2025
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
3 changes: 2 additions & 1 deletion .github/workflows/build-sphinx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ jobs:
oneapi-pkgs-env: ''
# Enable env when it's required to use only conda packages without OneAPI installation
# oneapi-pkgs-env: '${{ github.workspace }}/environments/oneapi_pkgs.yml'
dpctl-pkg-txt: 'environments/dpctl_pkg.txt'

steps:
- name: Cancel Previous Runs
Expand Down Expand Up @@ -149,7 +150,7 @@ jobs:
- name: Install dpctl
if: env.oneapi-pkgs-env == ''
run: |
pip install -i https://pypi.anaconda.org/dppy/label/dev/simple dpctl==0.20.0dev0
pip install -r ${{ env.dpctl-pkg-txt }}

- name: Conda info
run: |
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/generate_coverage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ jobs:
oneapi-pkgs-env: ''
# Enable env when it's required to use only conda packages without OneAPI installation
# oneapi-pkgs-env: '${{ github.workspace }}/environments/oneapi_pkgs.yml'
dpctl-pkg-txt: 'environments/dpctl_pkg.txt'

steps:
- name: Cancel Previous Runs
Expand Down Expand Up @@ -108,7 +109,7 @@ jobs:
- name: Install dpctl
if: env.oneapi-pkgs-env == ''
run: |
pip install -i https://pypi.anaconda.org/dppy/label/dev/simple dpctl==0.20.0dev0
pip install -r ${{ env.dpctl-pkg-txt }}

- name: Conda info
run: |
Expand Down
2 changes: 2 additions & 0 deletions environments/dpctl_pkg.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
--index-url https://pypi.anaconda.org/dppy/label/dev/simple
dpctl>=0.20.0dev0
Loading