Skip to content

Commit b699b53

Browse files
authored
drop python 3.7 support
1 parent 3a9fdb8 commit b699b53

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/unittests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
strategy:
88
matrix:
99
os: [ubuntu-latest, macos-latest, windows-latest]
10-
python-version: [3.7, 3.8, 3.9, "3.10"]
10+
python-version: [3.8, 3.9, "3.10", "3.11"]
1111
steps:
1212
- uses: actions/checkout@master
1313
- name: Setup Python

.github/workflows/unittests_codecov.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ jobs:
1313
name: Run unit tests with codecov upload
1414
runs-on: ${{ matrix.os }}
1515
env:
16-
USING_COVERAGE: '3.7'
16+
USING_COVERAGE: '3.8'
1717
strategy:
1818
matrix:
1919
os: [ubuntu-latest, macos-latest, windows-latest]
20-
python-version: [3.7, 3.8, 3.9, "3.10"]
20+
python-version: [3.8, 3.9, "3.10", "3.11"]
2121
steps:
2222
- uses: actions/checkout@master
2323
- name: Setup Python ${{ matrix.python-version }}

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,16 +19,16 @@
1919
author_email="vinktim@gmail.com",
2020
include_package_data=True,
2121
license="MIT",
22-
python_requires=">=3.6",
22+
python_requires=">=3.8",
2323
classifiers=[
2424
"Operating System :: OS Independent",
2525
"Intended Audience :: Developers",
2626
"Programming Language :: Python",
2727
"Programming Language :: Python :: 3",
28-
"Programming Language :: Python :: 3.7",
2928
"Programming Language :: Python :: 3.8",
3029
"Programming Language :: Python :: 3.9",
3130
"Programming Language :: Python :: 3.10",
31+
"Programming Language :: Python :: 3.11",
3232
"License :: OSI Approved :: MIT License",
3333
"Topic :: Documentation",
3434
"Topic :: Text Processing",

0 commit comments

Comments
 (0)