Skip to content

Commit 8527a90

Browse files
committed
Update Python in CI
Signed-off-by: Mihai Todor <todor@ebi.ac.uk>
1 parent e5c50b6 commit 8527a90

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ jobs:
1111
strategy:
1212
max-parallel: 4
1313
matrix:
14-
python-version: [3.7]
14+
python-version: ["3.10"]
1515

1616
steps:
1717
- uses: actions/checkout@v2
1818
- name: Set up Python ${{ matrix.python-version }}
19-
uses: actions/setup-python@v1
19+
uses: actions/setup-python@v6
2020
with:
2121
python-version: ${{ matrix.python-version }}
2222
- name: Install dependencies

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.9
1+
FROM python:3.10
22
WORKDIR /app
33
COPY requirements.txt /app/requirements.txt
44
RUN pip install -r requirements.txt

dev-requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
attrs==20.3.0
22
coverage==5.5
33
iniconfig==1.1.1
4-
packaging==20.9
4+
packaging==22.0
55
pluggy==0.13.1
66
py==1.10.0
77
pyparsing==2.4.7

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ license_files =
2727
LICENSE
2828

2929
[options]
30-
python_requires = >= 3.6
30+
python_requires = >= 3.10
3131
packages = find_namespace:
3232
zip_safe: False
3333
scripts =

0 commit comments

Comments
 (0)