Skip to content

Commit

Permalink
fix: Use https protocol as unauthenticated git protocol is no longer …
Browse files Browse the repository at this point in the history
…supported (#1680)

* Use the https protocol to clone Git repositories over the
unauthenticated git protocol (git://) as it is no longer
supported on GitHub as of 2021-11-02.
   - c.f. https://github.blog/2021-09-01-improving-git-protocol-security-github/
  • Loading branch information
matthewfeickert authored Nov 2, 2021
1 parent 377b85d commit 983ee58
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/dependencies-head.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ jobs:
python -m pip --no-cache-dir --quiet install --upgrade .[test]
python -m pip uninstall --yes iminuit
python -m pip install --upgrade cython
python -m pip install --upgrade git+git://github.com/scikit-hep/iminuit.git
python -m pip install --upgrade git+https://github.com/scikit-hep/iminuit.git
python -m pip list
- name: Test with pytest
run: |
Expand All @@ -108,7 +108,7 @@ jobs:
python -m pip install --upgrade pip setuptools wheel
python -m pip --no-cache-dir --quiet install --upgrade .[test]
python -m pip uninstall --yes uproot
python -m pip install --upgrade git+git://github.com/scikit-hep/uproot4.git
python -m pip install --upgrade git+https://github.com/scikit-hep/uproot4.git
python -m pip list
- name: Test with pytest
run: |
Expand All @@ -133,7 +133,7 @@ jobs:
python -m pip install --upgrade pip setuptools wheel
python -m pip --no-cache-dir --quiet install --upgrade .[test]
python -m pip uninstall --yes pytest
python -m pip install --upgrade git+git://github.com/pytest-dev/pytest.git
python -m pip install --upgrade git+https://github.com/pytest-dev/pytest.git
python -m pip list
- name: Test with pytest
run: |
Expand Down

0 comments on commit 983ee58

Please sign in to comment.