Skip to content

Commit 716bdce

Browse files
Gavin AguiarGavin Aguiar
authored andcommitted
Removing the index url from the workflows
1 parent d7f757a commit 716bdce

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/ci_consumption_workflow.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
python-version: ${{ matrix.python-version }}
2929
- name: Install dependencies
3030
run: |
31-
python -m pip install --index-url https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple -U -e .[dev]
31+
python -m pip install -U -e .[dev]
3232
- name: Running 3.7 Tests
3333
if: matrix.python-version == 3.7
3434
env:

.github/workflows/ci_docker_con_workflow.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
python-version: ${{ matrix.python-version }}
3030
- name: Install dependencies
3131
run: |
32-
python -m pip install --index-url https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple -U -e .[dev]
32+
python -m pip install -U -e .[dev]
3333
- name: Running 3.7 Tests
3434
if: matrix.python-version == 3.7
3535
env:

.github/workflows/ci_docker_ded_workflow.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
python-version: ${{ matrix.python-version }}
3131
- name: Install dependencies
3232
run: |
33-
python -m pip install --index-url https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple -U -e .[dev]
33+
python -m pip install -U -e .[dev]
3434
- name: Running 3.7 Tests
3535
if: matrix.python-version == 3.7
3636
env:

0 commit comments

Comments
 (0)