Skip to content

Commit

Permalink
Run CI test for python 3.11. Drop CI test for 3.7 (#133)
Browse files Browse the repository at this point in the history
  • Loading branch information
tung-vu-td authored Aug 26, 2024
1 parent a9fe301 commit cce1fdf
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 16 deletions.
10 changes: 2 additions & 8 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,9 @@ jobs:
max-parallel: 2
matrix:
os: [ubuntu-latest, windows-latest]
python-version: ["3.7", "3.8", "3.9", "3.10"]
pandas-version: ["1.2.5", "1.3.5", "1.4.4", "1.5.2"]
python-version: ["3.8", "3.9", "3.10", "3.11"]
pandas-version: ["1.3.5", "1.4.4", "1.5.3"]
exclude:
- python-version: "3.7"
pandas-version: "1.4.4"
- python-version: "3.7"
pandas-version: "1.5.2"
- python-version: "3.10"
pandas-version: "1.2.5"
- python-version: "3.10"
pandas-version: "1.3.5"
- python-version: "3.10"
Expand Down
7 changes: 2 additions & 5 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,8 @@ def lint(session):
"python,pandas",
[
(python, pandas)
for python in ("3.7", "3.8", "3.9", "3.10")
for pandas in ("1.2.5", "1.3.5", "1.4.4", "1.5.2")
if (python, pandas) != ("3.7", "1.4.4")
if (python, pandas) != ("3.7", "1.5.2")
if (python, pandas) != ("3.10", "1.2.5")
for python in ("3.8", "3.9", "3.10", "3.11")
for pandas in ("1.3.5", "1.4.4", "1.5.3")
if (python, pandas) != ("3.10", "1.3.5")
if (python, pandas) != ("3.10", "1.4.4")
],
Expand Down
5 changes: 2 additions & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,14 @@ classifiers =
Topic :: Database
Programming Language :: Python
Programming Language :: Python :: 3
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
Programming Language :: Python :: 3.11

[options]
packages = find:
python_requires = >=3.7,<3.11
python_requires = >=3.7,<3.12
install_requires =
urllib3~=1.26,>=1.21.1
presto-python-client>=0.6.0
Expand Down

0 comments on commit cce1fdf

Please sign in to comment.