Skip to content

Commit ddebfbc

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

3 files changed

Lines changed: 4 additions & 4 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

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)