Skip to content

Commit aeb03e3

Browse files
committed
chore: merge w main
2 parents d16c697 + af9e04e commit aeb03e3

2 files changed

Lines changed: 13 additions & 6 deletions

File tree

.github/workflows/ci-build.yml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,18 @@ on:
1010

1111
jobs:
1212
build:
13-
# Avoiding -latest due to https://github.com/actions/setup-python/issues/162
14-
runs-on: ubuntu-20.04
13+
runs-on: ubuntu-22.04
1514
timeout-minutes: 5
1615
strategy:
1716
matrix:
18-
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
17+
python-version:
18+
- "3.13"
19+
- "3.12"
20+
- "3.11"
21+
- "3.10"
22+
- "3.9"
23+
- "3.8"
24+
- "3.7"
1925
permissions:
2026
contents: read
2127
steps:

setup.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
1-
from setuptools import setup
21
import os
32
import re
43

4+
from setuptools import setup
5+
56
here = os.path.abspath(os.path.dirname(__file__))
67

78
# Read the version number from a source file.
@@ -30,7 +31,7 @@ def find_version(*file_paths):
3031
author_email='opensource@slack.com',
3132
license='MIT',
3233
packages=['slackeventsapi'],
33-
python_requires=">=3.6",
34+
python_requires=">=3.7",
3435
long_description_content_type='text/x-rst',
3536
long_description=long_description,
3637
install_requires=[
@@ -45,12 +46,12 @@ def find_version(*file_paths):
4546
'Topic :: Office/Business',
4647
'License :: OSI Approved :: MIT License',
4748
'Programming Language :: Python',
48-
'Programming Language :: Python :: 3.6',
4949
'Programming Language :: Python :: 3.7',
5050
'Programming Language :: Python :: 3.8',
5151
'Programming Language :: Python :: 3.9',
5252
'Programming Language :: Python :: 3.10',
5353
'Programming Language :: Python :: 3.11',
5454
'Programming Language :: Python :: 3.12',
55+
'Programming Language :: Python :: 3.13',
5556
],
5657
zip_safe=False)

0 commit comments

Comments
 (0)