Skip to content

Commit 3924704

Browse files
committed
Update python for CI
Signed-off-by: Mihai Todor <todor@ebi.ac.uk>
1 parent 03ecde2 commit 3924704

4 files changed

Lines changed: 7 additions & 9 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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
attrs==20.3.0
22
coverage==5.5
33
iniconfig==1.1.1
4-
packaging==20.9
5-
pluggy==0.13.1
4+
packaging==22.0
5+
pluggy==1.5.0
66
py==1.10.0
77
pyparsing==2.4.7
88
pytest-cov==2.11.1

setup.cfg

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,14 @@ classifiers =
1111
Development Status :: 4 - Beta
1212
Intended Audience :: Life Science/Structural Biology
1313
Intended Audience :: Developers
14-
Programming Language :: Python :: 3.7
15-
Programming Language :: Python :: 3.8
16-
Programming Language :: Python :: 3.9
14+
Programming Language :: Python :: 3.10
1715
long_description = file: README.md
1816
long_description_content_type = text/markdown
1917
license_files =
2018
LICENSE.txt
2119

2220
[options]
23-
python_requires = >= 3.7
21+
python_requires = >= 3.10
2422
packages = find_namespace:
2523
zip_safe: False
2624
include_package_data = True

0 commit comments

Comments
 (0)