Skip to content

Commit d45ac54

Browse files
committed
Add python 3.11 support
1 parent 2c3bebc commit d45ac54

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/workflows/py_compile.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
timeout-minutes: 5
1111
strategy:
1212
matrix:
13-
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10']
13+
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10', '3.11']
1414
steps:
1515
- uses: actions/checkout@v2
1616
- name: Set up Python ${{ matrix.python-version }}

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@
1414
long_description = fh.read()
1515

1616
test_dependencies = [
17-
"slack_sdk>=3.11,<4",
17+
"slack_sdk>=3.15,<4",
1818
"pytest>=6,<7",
1919
"pytest-cov>=3,<4",
20-
"black==22.1.0",
20+
"black==22.10.0",
2121
]
2222

2323
setuptools.setup(
@@ -48,6 +48,7 @@
4848
"Programming Language :: Python :: 3.8",
4949
"Programming Language :: Python :: 3.9",
5050
"Programming Language :: Python :: 3.10",
51+
"Programming Language :: Python :: 3.11",
5152
"Programming Language :: Python :: Implementation :: CPython",
5253
"Operating System :: OS Independent",
5354
],

0 commit comments

Comments
 (0)