@@ -92,10 +92,13 @@ jobs:
92
92
python-version : ${{ matrix.python-version }}
93
93
94
94
- name : Install Poetry
95
- uses : snok/install-poetry@v1
96
- with :
97
- virtualenvs-create : true
98
- virtualenvs-in-project : true
95
+ run : |
96
+ pip install pipx
97
+ pipx ensurepath
98
+ pipx install poetry
99
+ poetry config --local virtualenvs.create true
100
+ poetry config --local virtualenvs.in-project true
101
+ poetry env use python
99
102
- name : Install Emacs
100
103
if : ${{ github.event.inputs.debug == 'on' }}
101
104
run : |
@@ -181,10 +184,13 @@ jobs:
181
184
python-version : ${{ matrix.python-version }}
182
185
183
186
- name : Install Poetry
184
- uses : snok/install-poetry@v1
185
- with :
186
- virtualenvs-create : true
187
- virtualenvs-in-project : true
187
+ run : |
188
+ pip install pipx
189
+ pipx ensurepath
190
+ pipx install poetry
191
+ poetry config --local virtualenvs.create true
192
+ poetry config --local virtualenvs.in-project true
193
+ poetry env use python
188
194
- name : Install Emacs
189
195
if : ${{ github.event.inputs.debug == 'on' }}
190
196
run : |
@@ -273,10 +279,13 @@ jobs:
273
279
python-version : ${{ matrix.python-version }}
274
280
275
281
- name : Install Poetry
276
- uses : snok/install-poetry@v1
277
- with :
278
- virtualenvs-create : true
279
- virtualenvs-in-project : true
282
+ run : |
283
+ pip install pipx
284
+ pipx ensurepath
285
+ pipx install poetry
286
+ poetry config --local virtualenvs.create true
287
+ poetry config --local virtualenvs.in-project true
288
+ poetry env use python
280
289
- name : Install Emacs
281
290
if : ${{ github.event.inputs.debug == 'on' }}
282
291
run : |
@@ -375,10 +384,13 @@ jobs:
375
384
python-version : ${{ matrix.python-version }}
376
385
377
386
- name : Install Poetry
378
- uses : snok/install-poetry@v1
379
- with :
380
- virtualenvs-create : true
381
- virtualenvs-in-project : true
387
+ run : |
388
+ pip install pipx
389
+ pipx ensurepath
390
+ pipx install poetry
391
+ poetry config --local virtualenvs.create true
392
+ poetry config --local virtualenvs.in-project true
393
+ poetry env use python
382
394
- name : Install Emacs
383
395
if : ${{ github.event.inputs.debug == 'on' }}
384
396
run : |
@@ -478,10 +490,13 @@ jobs:
478
490
echo "IGNORE_ORA_01843=True" >> $GITHUB_ENV
479
491
echo "IGNORE_ORA_00932=True" >> $GITHUB_ENV
480
492
- name : Install Poetry
481
- uses : snok/install-poetry@v1
482
- with :
483
- virtualenvs-create : true
484
- virtualenvs-in-project : true
493
+ run : |
494
+ pip install pipx
495
+ pipx ensurepath
496
+ pipx install poetry
497
+ poetry config --local virtualenvs.create true
498
+ poetry config --local virtualenvs.in-project true
499
+ poetry env use python
485
500
- name : Install Emacs
486
501
if : ${{ github.event.inputs.debug == 'on' }}
487
502
run : |
@@ -538,12 +553,15 @@ jobs:
538
553
- uses : actions/setup-python@v5
539
554
with :
540
555
python-version : ' 3.12'
541
-
556
+
542
557
- name : Install Poetry
543
- uses : snok/install-poetry@v1
544
- with :
545
- virtualenvs-create : true
546
- virtualenvs-in-project : true
558
+ run : |
559
+ pip install pipx
560
+ pipx ensurepath
561
+ pipx install poetry
562
+ poetry config --local virtualenvs.create true
563
+ poetry config --local virtualenvs.in-project true
564
+ poetry env use python
547
565
548
566
- name : Install Release Dependencies
549
567
run : |
0 commit comments