Skip to content

Commit 7fe7be2

Browse files
authored
do not unit test for python 3.7
1 parent 0bb5eab commit 7fe7be2

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.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", "3.11"]
10+
python-version: [3.8, 3.9, "3.10", "3.11"]
1111
steps:
1212
- uses: actions/checkout@master
1313
- name: Setup Python ${{ matrix.python-version }}

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,11 @@
1515
author_email="[email protected]",
1616
license="MIT",
1717
include_package_data=True,
18-
python_requires=">=3.6",
18+
python_requires=">=3.7",
1919
classifiers=[
2020
"Operating System :: OS Independent",
2121
"Programming Language :: Python",
2222
"Programming Language :: Python :: 3",
23-
"Programming Language :: Python :: 3.7",
2423
"Programming Language :: Python :: 3.8",
2524
"Programming Language :: Python :: 3.9",
2625
"Programming Language :: Python :: 3.10",

0 commit comments

Comments
 (0)