Skip to content

Commit

Permalink
Added supporting files for python 3.12 (#91)
Browse files Browse the repository at this point in the history
* Added supporting files for python 3.12

* Added setuptools>=45.2.0
  • Loading branch information
v-kaushal authored May 17, 2024
1 parent ca5f01c commit 455435f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/integration_build_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
max-parallel: 3
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v1
Expand Down
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
DEPENDENCIES = [
'python_dateutil>=2.5.3',
'pytz>=2017.2',
'wrapt>=1.14.0,<=1.16.0'
'wrapt>=1.14.0,<=1.16.0',
]

EXTRAS = {
Expand All @@ -34,6 +34,7 @@
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
]

with io.open('LICENSE.txt', 'r', encoding='utf-8') as f:
Expand All @@ -50,5 +51,5 @@
extras_require=EXTRAS,
packages=find_packages(exclude=['tests', 'tests.*']),
include_package_data=True,
python_requires=">=3.8,<3.12"
python_requires=">=3.8"
)
3 changes: 2 additions & 1 deletion tests/test_requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,5 @@ wrapt>=1.14.0,<=1.16.0
numpy>=1.13.0
pandas>=0.20.2
pyspark>=2.3.2
pytest
pytest
setuptools>=45.2.0

0 comments on commit 455435f

Please sign in to comment.