Skip to content

Commit

Permalink
[CI] Fixed failing linkcheck, w&b init (#3287)
Browse files Browse the repository at this point in the history
* [CI] Fixed failing linkcheck, w&b init

* Fixed pytorch cpu installation link to avoid downloading nvidia libs
  • Loading branch information
vfdev-5 authored Sep 27, 2024
1 parent 3a059ce commit 9481227
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/hvd-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
run: |
#install other dependencies
pip install torch torchvision -f https://download.pytorch.org/whl/cpu/torch_stable.html
pip install torch torchvision --index-url https://download.pytorch.org/whl/cpu
pip install -r requirements-dev.txt
pip install horovod
python setup.py install
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/install_docs_deps.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# remove pkg-resources as it causes failure when installing https://github.com/pytorch-ignite/sphinxcontrib-versioning
pip uninstall -y pkg-resources setuptools && pip install --upgrade setuptools pip wheel
pip install torch torchvision -f https://download.pytorch.org/whl/cpu/torch_stable.html -U
pip install torch torchvision --index-url https://download.pytorch.org/whl/cpu -U
pip install -r requirements-dev.txt
pip install -r docs/requirements.txt
pip install git+https://github.com/pytorch-ignite/sphinxcontrib-versioning.git
4 changes: 2 additions & 2 deletions .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,11 +83,11 @@ jobs:

- name: Install PyTorch
if: ${{ matrix.pytorch-channel == 'pytorch' }}
run: pip install torch torchvision -f https://download.pytorch.org/whl/cpu/torch_stable.html
run: pip install torch torchvision --index-url https://download.pytorch.org/whl/cpu

- name: Install PyTorch (nightly)
if: ${{ matrix.pytorch-channel == 'pytorch-nightly' }}
run: pip install torch torchvision -f https://download.pytorch.org/whl/nightly/cpu/torch_nightly.html --pre
run: pip install torch torchvision --index-url https://download.pytorch.org/whl/nightly/cpu --pre

- name: Install dependencies
run: |
Expand Down
2 changes: 1 addition & 1 deletion ignite/handlers/wandb_logger.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class WandBLogger(BaseLogger):
Args:
args: Positional arguments accepted by `wandb.init`.
kwargs: Keyword arguments accepted by `wandb.init`.
Please see `wandb.init <https://docs.wandb.ai/library/init>`_ for documentation of possible parameters.
Please see `wandb.init <https://docs.wandb.ai/ref/python/init>`_ for documentation of possible parameters.
Examples:
.. code-block:: python
Expand Down

0 comments on commit 9481227

Please sign in to comment.