Skip to content

Commit fc9f4a0

Browse files
committed
Dev: Revert unnecessary single to double quote changes
1 parent 79f1b54 commit fc9f4a0

4 files changed

Lines changed: 18 additions & 18 deletions

File tree

.github/workflows/main.yml

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ jobs:
7070
- name: Setup Miniconda
7171
uses: conda-incubator/setup-miniconda@v3
7272
with:
73-
miniconda-version: "latest"
73+
miniconda-version: 'latest'
7474
auto-update-conda: true
7575
python-version: ${{ env.PYTHON_VER }}
7676
activate-environment: TESTconda
@@ -121,7 +121,7 @@ jobs:
121121
- name: Setup Miniconda
122122
uses: conda-incubator/setup-miniconda@v3
123123
with:
124-
miniconda-version: "latest"
124+
miniconda-version: 'latest'
125125
auto-update-conda: true
126126
activate-environment: TEST
127127
python-version: ${{ env.PYTHON_VER }}
@@ -170,7 +170,7 @@ jobs:
170170
- name: Setup Miniconda
171171
uses: conda-incubator/setup-miniconda@v3
172172
with:
173-
miniconda-version: "latest"
173+
miniconda-version: 'latest'
174174
auto-update-conda: true
175175
activate-environment: TEST
176176
python-version: ${{ env.PYTHON_VER }}
@@ -214,7 +214,7 @@ jobs:
214214
fail-fast: false
215215
matrix:
216216
os: ${{fromJson(needs.set-os.outputs.matrix_os)}}
217-
python-version: ["3.10", "3.11", "3.12"]
217+
python-version: ['3.10', '3.11', '3.12']
218218
env:
219219
PYTHON_VER: ${{ matrix.python-version }}
220220

@@ -224,7 +224,7 @@ jobs:
224224
- name: Setup Miniconda
225225
uses: conda-incubator/setup-miniconda@v3
226226
with:
227-
miniconda-version: "latest"
227+
miniconda-version: 'latest'
228228
auto-update-conda: true
229229
environment-file: environment.yml
230230
activate-environment: TEST
@@ -278,7 +278,7 @@ jobs:
278278
fail-fast: false
279279
matrix:
280280
os: ${{fromJson(needs.set-os.outputs.matrix_os)}}
281-
python-version: ["3.10", "3.11", "3.12"]
281+
python-version: ['3.10', '3.11', '3.12']
282282
env:
283283
PYTHON_VER: ${{ matrix.python-version }}
284284

@@ -288,7 +288,7 @@ jobs:
288288
- name: Setup Miniconda
289289
uses: conda-incubator/setup-miniconda@v3
290290
with:
291-
miniconda-version: "latest"
291+
miniconda-version: 'latest'
292292
auto-update-conda: true
293293
environment-file: environment-dev.yml
294294
activate-environment: TEST
@@ -342,7 +342,7 @@ jobs:
342342
fail-fast: false
343343
matrix:
344344
os: ${{fromJson(needs.set-os.outputs.matrix_os)}}
345-
python-version: ["3.10", "3.11", "3.12"]
345+
python-version: ['3.10', '3.11', '3.12']
346346

347347
steps:
348348
- name: Set up Python ${{ matrix.python-version }}
@@ -408,15 +408,15 @@ jobs:
408408
fail-fast: false
409409
matrix:
410410
os: ${{fromJson(needs.set-os.outputs.matrix_os)}}
411-
python-version: ["3.10", "3.11", "3.12"]
411+
python-version: ['3.10', '3.11', '3.12']
412412

413413
steps:
414414
- uses: actions/checkout@v6
415415

416416
- name: Setup Miniconda
417417
uses: conda-incubator/setup-miniconda@v3
418418
with:
419-
miniconda-version: "latest"
419+
miniconda-version: 'latest'
420420
auto-update-conda: true
421421
environment-file: environment.yml
422422
activate-environment: TEST
@@ -483,7 +483,7 @@ jobs:
483483

484484
- uses: actions/setup-python@v6
485485
with:
486-
python-version: "3.11"
486+
python-version: '3.11'
487487

488488
- name: Install build dependencies
489489
run: python -m pip install build --user
@@ -539,7 +539,7 @@ jobs:
539539
matrix:
540540
module:
541541
[wave, tidal, river, dolfyn, power, loads, mooring, acoustics, utils]
542-
python-version: ["3.12"]
542+
python-version: ['3.12']
543543

544544
steps:
545545
- uses: actions/checkout@v6
@@ -609,7 +609,7 @@ jobs:
609609
- name: Set up Python
610610
uses: actions/setup-python@v6
611611
with:
612-
python-version: "3.11"
612+
python-version: '3.11'
613613

614614
- name: Generate matrix
615615
id: set-matrix
@@ -638,9 +638,9 @@ jobs:
638638
- name: Set up Miniconda
639639
uses: conda-incubator/setup-miniconda@v3
640640
with:
641-
miniconda-version: "latest"
641+
miniconda-version: 'latest'
642642
auto-update-conda: true
643-
python-version: "3.12"
643+
python-version: '3.12'
644644
channels: conda-forge
645645
activate-environment: TESTconda
646646
use-only-tar-bz2: false

.github/workflows/pylint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- name: Set up Python
1414
uses: actions/setup-python@v6
1515
with:
16-
python-version: "3.11"
16+
python-version: '3.11'
1717

1818
- name: Install dependencies
1919
run: |

.github/workflows/pypi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525

2626
- uses: actions/setup-python@v6
2727
with:
28-
python-version: "3.10"
28+
python-version: '3.10'
2929

3030
- run: python -m pip install build --user
3131
- run: python -m build --sdist --wheel --outdir dist/ .

.github/workflows/test-wheel-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ubuntu-latest
1717
strategy:
1818
matrix:
19-
python-version: ["3.11", "3.12"]
19+
python-version: ['3.11', '3.12']
2020

2121
steps:
2222
- uses: actions/checkout@v6

0 commit comments

Comments
 (0)