Skip to content

Commit 9676625

Browse files
🌿 Move CI to Python 3.8 (#78)
1 parent 6739c38 commit 9676625

File tree

1 file changed

+6
-15
lines changed

1 file changed

+6
-15
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,10 @@ jobs:
2323
- name: Set up python
2424
uses: actions/setup-python@v4
2525
with:
26-
python-version: 3.7
26+
python-version: 3.8
2727
- name: Bootstrap poetry
2828
run: |
29-
curl --location --show-error --silent --output poetry.py https://install.python-poetry.org \
30-
&& echo '66db5477a597b6176202ef77792076057ce50d2c5a2d2d2978c63e1f144d7b95' poetry.py | sha256sum -c \
31-
&& python poetry.py -y --version 1.5.1 \
32-
&& rm poetry.py
29+
curl -sSL https://install.python-poetry.org | python - -y --version 1.5.1
3330
- name: Install dependencies
3431
run: poetry install
3532
- name: Compile
@@ -42,13 +39,10 @@ jobs:
4239
- name: Set up python
4340
uses: actions/setup-python@v4
4441
with:
45-
python-version: 3.7
42+
python-version: 3.8
4643
- name: Bootstrap poetry
4744
run: |
48-
curl --location --show-error --silent --output poetry.py https://install.python-poetry.org \
49-
&& echo '66db5477a597b6176202ef77792076057ce50d2c5a2d2d2978c63e1f144d7b95' poetry.py | sha256sum -c \
50-
&& python poetry.py -y --version 1.5.1 \
51-
&& rm poetry.py
45+
curl -sSL https://install.python-poetry.org | python - -y --version 1.5.1
5246
- name: Install dependencies
5347
run: poetry install
5448
- name: Test
@@ -70,13 +64,10 @@ jobs:
7064
- name: Set up python
7165
uses: actions/setup-python@v4
7266
with:
73-
python-version: 3.7
67+
python-version: 3.8
7468
- name: Bootstrap poetry
7569
run: |
76-
curl --location --show-error --silent --output poetry.py https://install.python-poetry.org \
77-
&& echo '66db5477a597b6176202ef77792076057ce50d2c5a2d2d2978c63e1f144d7b95' poetry.py | sha256sum -c \
78-
&& python poetry.py -y --version 1.5.1 \
79-
&& rm poetry.py
70+
curl -sSL https://install.python-poetry.org | python - -y --version 1.5.1
8071
- name: Install dependencies
8172
run: poetry install
8273
- name: Publish to pypi

0 commit comments

Comments
 (0)