Skip to content

Commit b6588c3

Browse files
authored
Merge branch 'gramaziokohler:main' into fix_action_server
2 parents f73b35d + fc70626 commit b6588c3

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
@@ -17,6 +17,7 @@ Unreleased
1717
* Fixed bug with action client/server and now they work as expected.
1818
* Switched to ``black`` for python code formatting.
1919
* Fix incompatible settings between ``black`` and ``flake8``.
20+
* Updated Github Actions workflows to remove python 3.6 builds.
2021

2122
**Fixed**
2223

0 commit comments

Comments
 (0)