Skip to content

Commit 635ae30

Browse files
committed
Use Python 3.8 as minimal version (which should work on Ubuntu 20.04)
1 parent 3b4ad7c commit 635ae30

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

.github/workflows/deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@ on: push
44
jobs:
55
deploy:
66
name: Deploy graphANNIS package
7-
runs-on: ubuntu-22.04
7+
runs-on: ubuntu-20.04
88
# Only run Job on tagged commits that start with "v"
99
if: startsWith(github.ref, 'refs/tags/v')
1010
steps:
1111
- name: Setup Python
1212
uses: actions/setup-python@v2
1313
with:
14-
python-version: '3.6'
14+
python-version: '3.8'
1515
- name: Checkout
1616
uses: actions/checkout@v1
1717
- name: Install dependencies

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ on: push
44
jobs:
55
test:
66
name: Execute all automated tests
7-
runs-on: ubuntu-22.04
7+
runs-on: ubuntu-20.04
88
steps:
99
- name: Setup Python
1010
uses: actions/setup-python@v2
1111
with:
12-
python-version: '3.6'
12+
python-version: '3.8'
1313
- name: Checkout
1414
uses: actions/checkout@v1
1515
- name: Chache pip dependencies

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66
### Changed
77

88
- Update to graphANNIS 2.4.8.
9+
- Changed minimal Python version to 3.8
910

1011
## [2.1.0] - 2022-06-01
1112

0 commit comments

Comments
 (0)