Skip to content

Commit c61f321

Browse files
Merge pull request #461 from shankarpandala/dev
update build matrix to include Python 3.11, 3.12, and 3.13
2 parents 7e32457 + 0efd523 commit c61f321

File tree

3 files changed

+11
-13
lines changed

3 files changed

+11
-13
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,12 @@ jobs:
1515
fail-fast: false
1616
matrix:
1717
config:
18-
# - { os: windows-latest, py: "3.7" }
19-
# - { os: macOS-latest, py: "3.7" }
20-
- { os: ubuntu-latest, py: "3.6" }
21-
- { os: ubuntu-latest, py: "3.7" }
2218
- { os: ubuntu-latest, py: "3.8" }
2319
- { os: ubuntu-latest, py: "3.9" }
2420
- { os: ubuntu-latest, py: "3.10" }
21+
- { os: ubuntu-latest, py: "3.11" }
22+
- { os: ubuntu-latest, py: "3.12" }
23+
- { os: ubuntu-latest, py: "3.13" }
2524

2625
env:
2726
SDKROOT: /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk

.travis.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,7 @@ os:
33
- osx
44
- windows
55

6-
dist:
7-
- bionic
8-
- focal
9-
- Jammy
6+
dist: bionic
107

118
jobs:
129
allow_failures:
@@ -18,6 +15,9 @@ python:
1815
- 3.8
1916
- 3.9
2017
- 3.10
18+
- 3.11
19+
- 3.12
20+
- 3.13
2121

2222
install: pip install -U tox-travis
2323
script: tox

setup.py

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,19 +24,18 @@
2424
setup(
2525
author="Shankar Rao Pandala",
2626
author_email="[email protected]",
27-
python_requires=">=3.6",
27+
python_requires=">=3.8",
2828
classifiers=[
2929
"Development Status :: 2 - Pre-Alpha",
3030
"Intended Audience :: Developers",
3131
"License :: OSI Approved :: MIT License",
3232
"Natural Language :: English",
33-
'Programming Language :: Python :: 3',
34-
'Programming Language :: Python :: 3.5',
35-
'Programming Language :: Python :: 3.6',
36-
'Programming Language :: Python :: 3.7',
3733
'Programming Language :: Python :: 3.8',
3834
"Programming Language :: Python :: 3.9",
3935
"Programming Language :: Python :: 3.10",
36+
"Programming Language :: Python :: 3.11",
37+
"Programming Language :: Python :: 3.12",
38+
"Programming Language :: Python :: 3.13",
4039
],
4140
description="Lazy Predict help build a lot of basic models without much code and helps understand which models works better without any parameter tuning",
4241
long_description_content_type="text/markdown",

0 commit comments

Comments
 (0)