Skip to content

Commit 455435f

Browse files
authored
Added supporting files for python 3.12 (#91)
* Added supporting files for python 3.12 * Added setuptools>=45.2.0
1 parent ca5f01c commit 455435f

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

.github/workflows/integration_build_test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
max-parallel: 3
2222
fail-fast: false
2323
matrix:
24-
python-version: ["3.8", "3.9", "3.10", "3.11"]
24+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
2525

2626
steps:
2727
- uses: actions/checkout@v1

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
DEPENDENCIES = [
1717
'python_dateutil>=2.5.3',
1818
'pytz>=2017.2',
19-
'wrapt>=1.14.0,<=1.16.0'
19+
'wrapt>=1.14.0,<=1.16.0',
2020
]
2121

2222
EXTRAS = {
@@ -34,6 +34,7 @@
3434
'Programming Language :: Python :: 3.9',
3535
'Programming Language :: Python :: 3.10',
3636
'Programming Language :: Python :: 3.11',
37+
'Programming Language :: Python :: 3.12',
3738
]
3839

3940
with io.open('LICENSE.txt', 'r', encoding='utf-8') as f:
@@ -50,5 +51,5 @@
5051
extras_require=EXTRAS,
5152
packages=find_packages(exclude=['tests', 'tests.*']),
5253
include_package_data=True,
53-
python_requires=">=3.8,<3.12"
54+
python_requires=">=3.8"
5455
)

tests/test_requirements.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,5 @@ wrapt>=1.14.0,<=1.16.0
44
numpy>=1.13.0
55
pandas>=0.20.2
66
pyspark>=2.3.2
7-
pytest
7+
pytest
8+
setuptools>=45.2.0

0 commit comments

Comments
 (0)