Skip to content

Commit

Permalink
chore: drop support with py3.6, py3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
cupen committed Mar 26, 2024
1 parent 621ee50 commit afbda7b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 8 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,26 +19,26 @@ jobs:
fail-fast: false
matrix:
os:
# - ubuntu-latest
- ubuntu-20.04
- ubuntu-latest
# - windows
# - MacOs
py:
- "3.12"
- "3.11"
- "3.10"
- "3.9"
- "3.8"
- "3.7"
- "3.6"
steps:
- uses: actions/checkout@v4
- name: Setup python for test ${{ matrix.py }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.py }}
cache: 'pip'
cache-dependency-path: setup.py

- name: Initialize
run: make init

- name: Setup test suite
- name: Run test cases
run: make test
5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,15 +35,14 @@
"excel2xx=excel2xx.main:main_docopt",
],
},
python_requires=">=3.6,!=3.6.1",
# python_requires=">=3.6,!=3.6.1",
python_requires=">=3.8",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
Expand Down

0 comments on commit afbda7b

Please sign in to comment.