Skip to content

Commit fc70626

Browse files
authored
Merge pull request #103 from gramaziokohler/update-workflows
Update workflows
2 parents e8dbbd3 + 81d6e2e commit fc70626

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,19 +17,19 @@ jobs:
1717
matrix:
1818
name: [
1919
"ubuntu-py37",
20-
"ubuntu-py36",
20+
"ubuntu-py39",
2121
]
2222
include:
2323
- name: "ubuntu-py37"
2424
os: ubuntu-latest
2525
python-version: 3.7
26-
- name: "ubuntu-py36"
26+
- name: "ubuntu-py39"
2727
os: ubuntu-latest
28-
python-version: 3.6
28+
python-version: 3.9
2929
steps:
30-
- uses: actions/checkout@v2
30+
- uses: actions/checkout@v3
3131
- name: Set up Python ${{ matrix.python-version }}
32-
uses: actions/setup-python@v2
32+
uses: actions/setup-python@v4
3333
with:
3434
python-version: ${{ matrix.python-version }}
3535
- name: Install dependencies

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ jobs:
1010
name: publish release
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v2
13+
- uses: actions/checkout@v3
1414
- name: Set up Python 3.8
15-
uses: actions/setup-python@v2
15+
uses: actions/setup-python@v4
1616
with:
1717
python-version: 3.8
1818
- name: 🔗 Install dependencies

CHANGELOG.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ Unreleased
1616

1717
* Switched to ``black`` for python code formatting.
1818
* Fix incompatible settings between ``black`` and ``flake8``.
19+
* Updated Github Actions workflows to remove python 3.6 builds.
1920

2021
**Fixed**
2122

0 commit comments

Comments
 (0)