Skip to content

Commit 54bd004

Browse files
authored
Wamartin/add py311 support (#85)
* adjust to new params format with optional param in decorator Signed-off-by: Walter Martin <[email protected]> * Add Python 3.11 to supported versions, add it to testing Signed-off-by: Walter Martin <[email protected]> * update python_requires in setup Signed-off-by: Walter Martin <[email protected]> * try updating wrapt bounds to latest, 1.14.0-1.16.0 Signed-off-by: Walter Martin <[email protected]> --------- Signed-off-by: Walter Martin <[email protected]>
1 parent 01ec191 commit 54bd004

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-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"]
24+
python-version: ["3.8", "3.9", "3.10", "3.11"]
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.11.1,<=1.12.1'
19+
'wrapt>=1.14.0,<=1.16.0'
2020
]
2121

2222
EXTRAS = {
@@ -33,6 +33,7 @@
3333
'Programming Language :: Python :: 3.8',
3434
'Programming Language :: Python :: 3.9',
3535
'Programming Language :: Python :: 3.10',
36+
'Programming Language :: Python :: 3.11',
3637
]
3738

3839
with io.open('LICENSE.txt', 'r', encoding='utf-8') as f:
@@ -49,5 +50,5 @@
4950
extras_require=EXTRAS,
5051
packages=find_packages(exclude=['tests', 'tests.*']),
5152
include_package_data=True,
52-
python_requires=">=3.7,<3.11"
53+
python_requires=">=3.8,<3.12"
5354
)

tests/test_requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
python_dateutil>=2.5.3
22
pytz>=2017.2
3-
wrapt>=1.11.1,<=1.12.1
3+
wrapt>=1.14.0,<=1.16.0
44
numpy>=1.13.0
55
pandas>=0.20.2
66
pyspark>=2.3.2

0 commit comments

Comments
 (0)