Skip to content

Commit 8ae9ee4

Browse files
committed
build(python): drop support for Python 3.6 and 3.7 (#586)
BREAKING CHANGE: drop support for Python 3.6 and 3.7 Closes reanahub/reana#784
1 parent f1764ed commit 8ae9ee4

2 files changed

Lines changed: 7 additions & 6 deletions

File tree

.github/workflows/ci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
- name: Setup Python
5656
uses: actions/setup-python@v5
5757
with:
58-
python-version: 3.8
58+
python-version: "3.8"
5959

6060
- name: Check Python code formatting
6161
run: |
@@ -72,7 +72,7 @@ jobs:
7272
- name: Setup Python
7373
uses: actions/setup-python@v5
7474
with:
75-
python-version: 3.8
75+
python-version: "3.8"
7676

7777
- name: Check compliance with pep8, pyflakes and circular complexity
7878
run: |
@@ -89,7 +89,7 @@ jobs:
8989
- name: Setup Python
9090
uses: actions/setup-python@v5
9191
with:
92-
python-version: 3.8
92+
python-version: "3.8"
9393

9494
- name: Check compliance with Python docstring conventions
9595
run: |
@@ -106,7 +106,7 @@ jobs:
106106
- name: Setup Python
107107
uses: actions/setup-python@v5
108108
with:
109-
python-version: 3.8
109+
python-version: "3.8"
110110

111111
- name: Check Python manifest completeness
112112
run: |
@@ -123,7 +123,7 @@ jobs:
123123
- name: Setup Python
124124
uses: actions/setup-python@v5
125125
with:
126-
python-version: 3.8
126+
python-version: "3.8"
127127

128128
- name: Install system dependencies
129129
run: |
@@ -148,7 +148,7 @@ jobs:
148148
- name: Setup Python
149149
uses: actions/setup-python@v5
150150
with:
151-
python-version: 3.8
151+
python-version: "3.8"
152152

153153
- name: Install Python dependencies
154154
run: |

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,7 @@
9494
"consume-job-queue = reana_workflow_controller." "cli:consume_job_queue",
9595
]
9696
},
97+
python_requires=">=3.8",
9798
extras_require=extras_require,
9899
install_requires=install_requires,
99100
setup_requires=setup_requires,

0 commit comments

Comments
 (0)