Skip to content

Commit

Permalink
build(python): drop support for Python 3.6 and 3.7 (reanahub#208)
Browse files Browse the repository at this point in the history
BREAKING CHANGE: drop support for Python 3.6 and 3.7

Closes reanahub/reana#784
  • Loading branch information
mdonadoni committed May 29, 2024
1 parent 8ca85c0 commit c5f68ab
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: 3.8
python-version: "3.8"

- name: Check Python code formatting
run: |
Expand All @@ -72,7 +72,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: 3.8
python-version: "3.8"

- name: Check compliance with pep8, pyflakes and circular complexity
run: |
Expand All @@ -89,7 +89,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: 3.8
python-version: "3.8"

- name: Check compliance with Python docstring conventions
run: |
Expand All @@ -106,7 +106,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: 3.8
python-version: "3.8"

- name: Check Python manifest completeness
run: |
Expand All @@ -123,7 +123,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: 3.8
python-version: "3.8"

- name: Install system dependencies
run: |
Expand All @@ -148,7 +148,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: 3.8
python-version: "3.8"

- name: Install Python dependencies
run: |
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@
"reana_workflow_engine_serial.tasks:run_serial_workflow",
]
},
python_requires=">=3.8",
install_requires=install_requires,
extras_require=extras_require,
setup_requires=setup_requires,
Expand Down

0 comments on commit c5f68ab

Please sign in to comment.