Skip to content

Commit fe909c8

Browse files
committed
Remove recursive flags, as we don't need them anymore
1 parent 917a791 commit fe909c8

File tree

4 files changed

+2
-6
lines changed

4 files changed

+2
-6
lines changed

.github/workflows/build.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@ jobs:
1313

1414
steps:
1515
- uses: actions/checkout@v4
16-
with:
17-
submodules: 'recursive'
1816

1917
- name: Set up Python ${{ matrix.python-version }}
2018
uses: actions/setup-python@v5

.github/workflows/cibuildwheels.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@ jobs:
4747
# Fetch all history for all branches and tags
4848
# (important for guessing the correct version with setuptools_scm)
4949
fetch-depth: 0
50-
submodules: 'recursive'
5150

5251
- name: Set up Python
5352
uses: actions/setup-python@v5
@@ -95,7 +94,6 @@ jobs:
9594
# Fetch all history for all branches and tags
9695
# (important for guessing the correct version with setuptools_scm)
9796
fetch-depth: 0
98-
submodules: 'recursive'
9997

10098
- uses: actions/setup-python@v5
10199
name: Setup Python ${{ matrix.python-version }}

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ Building from sources
183183

184184
.. code-block:: console
185185
186-
git clone --recursive https://github.com/Blosc/python-blosc2/
186+
git clone https://github.com/Blosc/python-blosc2/
187187
cd python-blosc2
188188
pip install . # add -e for editable mode
189189

doc/getting_started/installation.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Source code
1515

1616
.. code-block:: console
1717
18-
git clone --recursive https://github.com/Blosc/python-blosc2/
18+
git clone https://github.com/Blosc/python-blosc2/
1919
cd python-blosc2
2020
pip install -e .[test]
2121

0 commit comments

Comments
 (0)