Skip to content

Commit

Permalink
Merge pull request #73 from jasopolis/bump-python-3.11
Browse files Browse the repository at this point in the history
Add support for Python 3.11
  • Loading branch information
siddhantgoel committed Apr 19, 2023
2 parents 4399bfa + 92fabe2 commit 59ed92e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10"]
python-version: ["3.8", "3.9", "3.10", "3.11"]
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v3
Expand Down
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@
packages=find_packages(),
ext_modules=[
Extension(
'streaming_form_data._parser', ['streaming_form_data/_parser.c'],
'streaming_form_data._parser',
['streaming_form_data/_parser.c'],
)
],
url='https://github.com/siddhantgoel/streaming-form-data',
Expand All @@ -38,6 +39,7 @@
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3 :: Only',
],
keywords='form-data, forms, http, multipart, web',
Expand Down

0 comments on commit 59ed92e

Please sign in to comment.