Skip to content

Fix for gh 1749 #1754

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
Jul 24, 2024
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
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ guide](https://www.intel.com/content/www/us/en/developer/articles/guide/installa
To install `dpctl` from the Intel(R) conda channel, use the following command:

```bash
conda install dpctl -c https://software.repos.intel.com/python/conda/
conda install dpctl -c https://software.repos.intel.com/python/conda/ -c conda-forge
```

## Pip
Expand All @@ -86,7 +86,7 @@ To try out the latest features, install `dpctl` from our
development channel on Anaconda cloud:

```bash
conda install dpctl -c dppy/label/dev
conda install dpctl -c dppy/label/dev -c conda-forge
```

# Building
Expand Down Expand Up @@ -116,7 +116,8 @@ To run the tests, use:
pytest --pyargs dpctl
```

Running full test suite requires working C/C++ compiler. To run the test suite without one, use:
Running full test suite requires working C/C++ compiler and installed Cython package.
To run the test suite without these, use:

```bash
pytest --pyargs dpctl -k "not test_cython_api and not test_c_headers"
Expand Down
4 changes: 2 additions & 2 deletions docs/doc_sources/beginners_guides/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,14 @@ indicated by ``--channel`` option:
.. code-block:: bash
:caption: Getting latest released version of ``dpctl`` using conda

conda create --name dpctl_env --channel https://software.repos.intel.com/python/conda/ dpctl
conda create --name dpctl_env --channel https://software.repos.intel.com/python/conda/ --channel conda-forge dpctl

Development builds of ``dpctl`` can be accessed from the ``dppy/label/dev`` channel:

.. code-block:: bash
:caption: Getting latest development version

conda create -n dpctl_nightly -c dppy/label/dev -c https://software.repos.intel.com/python/conda/ dpctl
conda create -n dpctl_nightly -c dppy/label/dev -c https://software.repos.intel.com/python/conda/ -c conda-forge dpctl

.. note::
If :py:mod:`dpctl` is not available for the Python version of interest,
Expand Down
Loading