Skip to content

Commit 2cd7cd2

Browse files
committed
Added docutils to required pkg installs for versions.py
1 parent af3c56f commit 2cd7cd2

9 files changed

Lines changed: 10 additions & 10 deletions

.github/workflows/check-conda-forge-actions.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
repository: stumpy-dev/stumpy
1616
- name: Upgrade Pip, Install Minimum Requirements
1717
run: |
18-
python -m pip install --upgrade pip pandas lxml
18+
python -m pip install --upgrade pip pandas lxml docutils
1919
shell: bash
2020
- name: Generate Python versions
2121
id: set-matrix

.github/workflows/check-pypi-wheels-actions.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
repository: stumpy-dev/stumpy
1616
- name: Upgrade Pip, Install Minimum Requirements
1717
run: |
18-
python -m pip install --upgrade pip pandas lxml
18+
python -m pip install --upgrade pip pandas lxml docutils
1919
shell: bash
2020
- name: Generate Python versions
2121
id: set-matrix

.github/workflows/check-python-eol-actions.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
repository: stumpy-dev/stumpy
1414
- name: Upgrade Pip, Install Minimum Requirements
1515
run: |
16-
python -m pip install --upgrade pip pandas lxml packaging
16+
python -m pip install --upgrade pip pandas lxml packaging docutils
1717
shell: bash
1818
- name: Determine Safe Python Version
1919
id: get_safe_python
@@ -25,7 +25,7 @@ jobs:
2525
python-version: ${{ steps.get_safe_python.outputs.safe_python }}
2626
- name: Upgrade Pip, Install Minimum Requirements For Safe Python
2727
run: |
28-
python -m pip install --upgrade pip pandas lxml packaging
28+
python -m pip install --upgrade pip pandas lxml packaging docutils
2929
shell: bash
3030
- name: Display Python Version
3131
run: python -c "import sys; print(sys.version)"

.github/workflows/check-tutorials-actions.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
repository: stumpy-dev/stumpy
1414
- name: Upgrade Pip, Install Minimum Requirements
1515
run: |
16-
python -m pip install --upgrade pip pandas lxml packaging
16+
python -m pip install --upgrade pip pandas lxml packaging docutils
1717
shell: bash
1818
- name: Determine Safe Python Version
1919
id: get_safe_python

.github/workflows/check-url-links-actions.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
repository: stumpy-dev/stumpy
1414
- name: Upgrade Pip, Install Minimum Requirements
1515
run: |
16-
python -m pip install --upgrade pip pandas lxml packaging
16+
python -m pip install --upgrade pip pandas lxml packaging docutils
1717
shell: bash
1818
- name: Determine Safe Python Version
1919
id: get_safe_python

.github/workflows/numba-python-compatibility-actions.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
repository: stumpy-dev/stumpy
1818
- name: Upgrade Pip, Install Minimum Requirements
1919
run: |
20-
python -m pip install --upgrade pip pandas lxml packaging
20+
python -m pip install --upgrade pip pandas lxml packaging docutils
2121
shell: bash
2222
- name: Get Latest Python Version
2323
id: set-latest

.github/workflows/numba-release-candidate-actions.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
repository: stumpy-dev/stumpy
1616
- name: Upgrade Pip, Install Minimum Requirements
1717
run: |
18-
python -m pip install --upgrade pip pandas lxml packaging
18+
python -m pip install --upgrade pip pandas lxml packaging docutils
1919
shell: bash
2020
- name: Get Safe Python Version
2121
id: set-safe

.github/workflows/pyfftw-actions.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Get Required Python Version
2020
id: python
2121
run: |
22-
python -m pip install pandas packaging lxml
22+
python -m pip install pandas packaging lxml docutils
2323
echo "version=$(python ./versions.py -pkg pyfftw)" >> $GITHUB_OUTPUT
2424
shell: bash
2525

.github/workflows/ray-actions.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Get Required Python Version
1818
id: python
1919
run: |
20-
python -m pip install pandas packaging lxml
20+
python -m pip install pandas packaging lxml docutils
2121
echo "version=$(python ./versions.py -pkg ray)" >> $GITHUB_OUTPUT
2222
shell: bash
2323
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)