Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Drop support for Python 3.5 and 3.6 #51

Open
wants to merge 1 commit into
base: python3
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 1 addition & 8 deletions .github/workflows/ci-python3.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,7 @@ jobs:
strategy:
matrix:
os: [ ubuntu-22.04, ubuntu-20.04, ubuntu-18.04 ]
python-version: [ '3.5', '3.6', '3.7', '3.8', '3.9', '3.10', '3.11' ]
# Exclude unsupported OS/Python version combinations
exclude:
- os: ubuntu-22.04
python-version: '3.5'
- os: ubuntu-22.04
python-version: '3.6'
python-version: [ '3.7', '3.8', '3.9', '3.10', '3.11' ]

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
Expand Down Expand Up @@ -67,7 +61,6 @@ jobs:
test/test.py -e --exit-early

- name: Check package quality
continue-on-error: ${{ contains(fromJson('["3.5", "3.6"]'), matrix.python-version) }}
run: pyroma -n 9 .

- name: Check the completeness of MANIFEST.in
Expand Down
1 change: 1 addition & 0 deletions Changelog
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
2022-xx-xx - v3.0.1.dev0:
* WARNING: This is a development snapshot, not a stable release.
* Drop support for Python 3.5 and 3.6.

2022-10-30 - v3.0.0:
* Tested platforms: Linux and FreeBSD. If there is interest in supporting more platforms (e.g. OSX and Windows), please get in contact with the project.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ This is a [friendly fork of cfv](https://github.com/cfv-project/cfv) maintained

## Requirements

Python ≥ 3.5 – older versions might work, but are unsupported.
Python ≥ 3.7 – older versions might work, but are unsupported.
For Python 2 support, see the [python2 branch](https://github.com/cfv-project/cfv/tree/python2).

### Optional
Expand Down
4 changes: 1 addition & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,6 @@ def _get_version(path):
'Topic :: Utilities',
'License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
Expand All @@ -56,7 +54,7 @@ def _get_version(path):
'Source Code': 'https://github.com/cfv-project/cfv',
'Original Project': 'http://cfv.sourceforge.net/',
},
python_requires='>=3.5',
python_requires='>=3.7',
packages=find_packages('lib'),
package_dir={'': 'lib'},
include_package_data=True,
Expand Down