Skip to content

Commit 71c1478

Browse files
committed
Python 3.12
1 parent cc4bc1a commit 71c1478

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

.github/workflows/integration.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
max-parallel: 15
5858
fail-fast: false
5959
matrix:
60-
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', 'pypy-3.7', 'pypy-3.8', 'pypy-3.9']
60+
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12', 'pypy-3.7', 'pypy-3.8', 'pypy-3.9']
6161
test-type: ['standalone', 'cluster']
6262
connection-type: ['hiredis', 'plain']
6363
env:
@@ -89,7 +89,7 @@ jobs:
8989

9090
- name: Upload codecov coverage
9191
uses: codecov/codecov-action@v3
92-
if: ${{matrix.python-version == '3.11'}}
92+
if: ${{matrix.python-version == '3.12'}}
9393
with:
9494
fail_ci_if_error: false
9595

@@ -111,7 +111,7 @@ jobs:
111111
strategy:
112112
fail-fast: false
113113
matrix:
114-
python-version: ['3.7', '3.11']
114+
python-version: ['3.7', '3.12']
115115
test-type: ['standalone', 'cluster']
116116
connection-type: ['hiredis', 'plain']
117117
protocol: ['3']
@@ -160,7 +160,7 @@ jobs:
160160
strategy:
161161
fail-fast: false
162162
matrix:
163-
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', 'pypy-3.7', 'pypy-3.8', 'pypy-3.9']
163+
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12', 'pypy-3.7', 'pypy-3.8', 'pypy-3.9']
164164
steps:
165165
- uses: actions/checkout@v3
166166
- uses: actions/setup-python@v4

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
install_requires=[
3939
'importlib-metadata >= 1.0; python_version < "3.8"',
4040
'typing-extensions; python_version<"3.8"',
41-
'async-timeout>=4.0.2; python_full_version<="3.11.2"',
41+
'async-timeout>=4.0.2"',
4242
],
4343
classifiers=[
4444
"Development Status :: 5 - Production/Stable",
@@ -54,11 +54,12 @@
5454
"Programming Language :: Python :: 3.9",
5555
"Programming Language :: Python :: 3.10",
5656
"Programming Language :: Python :: 3.11",
57+
"Programming Language :: Python :: 3.12",
5758
"Programming Language :: Python :: Implementation :: CPython",
5859
"Programming Language :: Python :: Implementation :: PyPy",
5960
],
6061
extras_require={
6162
"hiredis": ["hiredis>=1.0.0"],
62-
"ocsp": ["cryptography>=36.0.1", "pyopenssl==20.0.1", "requests>=2.26.0"],
63+
"ocsp": ["cryptography>=36.0.1", "pyopenssl==23.2.1", "requests>=2.31.0"],
6364
},
6465
)

0 commit comments

Comments
 (0)