Skip to content
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

MAINT: Use git #1121

Merged
merged 2 commits into from
Mar 6, 2023
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
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
python -m pip install --upgrade --progress-bar off pip
python -m pip install --upgrade --progress-bar off -r test_requirements.txt
python -m pip install --upgrade --progress-bar off -r doc/requirements.txt
python -m pip install --upgrade https://api.github.com/repos/mne-tools/mne-python/zipball/main
python -m pip install --upgrade git+https://github.com/mne-tools/mne-python
python -m pip install -e .

- run:
Expand Down Expand Up @@ -112,7 +112,7 @@ jobs:
python -m pip install --upgrade --progress-bar off pip
python -m pip install --upgrade --progress-bar off -r test_requirements.txt
python -m pip install --upgrade --progress-bar off -r doc/requirements.txt
python -m pip install --upgrade --no-deps https://api.github.com/repos/mne-tools/mne-python/zipball/main
python -m pip install --upgrade --no-deps git+https://github.com/mne-tools/mne-python
python -m pip install -e .

- run:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/unit_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -154,13 +154,13 @@ jobs:
- name: Install MNE (stable)
if: "matrix.mne-version == 'mne-stable'"
run: |
git clone --depth 1 --single-branch --branch maint/1.3 https://github.com/mne-tools/mne-python.git
git clone --single-branch --branch maint/1.3 https://github.com/mne-tools/mne-python.git
python -m pip install -e ./mne-python

- name: Install MNE (main)
if: "matrix.mne-version == 'mne-main'"
run: |
git clone --depth 1 --single-branch --branch main https://github.com/mne-tools/mne-python.git
git clone --single-branch --branch main https://github.com/mne-tools/mne-python.git
python -m pip install -e ./mne-python

- name: Install BIDS validator (stable)
Expand Down