Skip to content

Commit e016723

Browse files
authored
Merge pull request #72 from cfv-project/ci-rm-ubuntu-20.04
Drop Python 3.6 since Ubuntu 20.04 runner was removed by Github
2 parents 174b248 + 252f409 commit e016723

File tree

4 files changed

+7
-10
lines changed

4 files changed

+7
-10
lines changed

.github/workflows/ci-python3.yml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,10 @@ jobs:
2222

2323
strategy:
2424
matrix:
25-
os: [ ubuntu-24.04, ubuntu-22.04, ubuntu-20.04 ]
26-
python-version: [ '3.6', '3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13', '3.14' ]
25+
os: [ ubuntu-24.04, ubuntu-22.04 ]
26+
python-version: [ '3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13', '3.14' ]
2727
# Exclude unsupported OS/Python version combinations
2828
exclude:
29-
- os: ubuntu-22.04
30-
python-version: '3.6'
31-
- os: ubuntu-24.04
32-
python-version: '3.6'
3329
- os: ubuntu-24.04
3430
python-version: '3.7'
3531
- os: ubuntu-24.04
@@ -76,7 +72,6 @@ jobs:
7672
test/test.py -e --exit-early
7773
7874
- name: Check package quality
79-
continue-on-error: ${{ contains(fromJson('["3.6"]'), matrix.python-version) }}
8075
run: pyroma -n 9 .
8176

8277
- name: Check the completeness of MANIFEST.in

Changelog

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
2024-xx-xx - v3.1.1.dev0:
22
* WARNING: This is a development snapshot, not a stable release.
3+
* Drop support for Python 3.6.
4+
* Python 3.7 is now the minimum supported version.
5+
* Add support for Python 3.14.
36

47
2024-05-20 - v3.1.0:
58
* Drop support for Python 3.5.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ This is a [friendly fork of cfv](https://github.com/cfv-project/cfv) maintained
1717

1818
## Requirements
1919

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

2323
### Optional

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@ def _get_version(path):
4242
'Topic :: Utilities',
4343
'License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)',
4444
'Programming Language :: Python :: 3',
45-
'Programming Language :: Python :: 3.6',
4645
'Programming Language :: Python :: 3.7',
4746
'Programming Language :: Python :: 3.8',
4847
'Programming Language :: Python :: 3.9',
@@ -58,7 +57,7 @@ def _get_version(path):
5857
'Source Code': 'https://github.com/cfv-project/cfv',
5958
'Original Project': 'http://cfv.sourceforge.net/',
6059
},
61-
python_requires='>=3.6',
60+
python_requires='>=3.7',
6261
packages=find_packages('lib'),
6362
package_dir={'': 'lib'},
6463
include_package_data=True,

0 commit comments

Comments
 (0)