Skip to content

Commit

Permalink
Remove python 3.6 support and test multiple python versions (#116)
Browse files Browse the repository at this point in the history
  • Loading branch information
zsxwing authored Feb 24, 2022
1 parent eed5241 commit b70e1ae
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [3.7, 3.8, 3.9]
include:
- python-version: 3.8
pandas-version: 1.2.4
- pandas-version: 1.2.4
pyarrow-version: 4.0.0
env:
PYTHON_VERSION: ${{ matrix.python-version }}
Expand Down
3 changes: 1 addition & 2 deletions python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
packages=[
'delta_sharing',
],
python_requires='>=3.6',
python_requires='>=3.7',
install_requires=[
'pandas',
'pyarrow>=4.0.0',
Expand Down Expand Up @@ -75,7 +75,6 @@
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
Expand Down

0 comments on commit b70e1ae

Please sign in to comment.