Skip to content

Commit

Permalink
add support for Python 3.11, drop support for Python 3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
jugmac00 committed Nov 20, 2022
1 parent 82ab52e commit 54998b8
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:

strategy:
matrix:
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
Expand Down
4 changes: 3 additions & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@ Changelog
------------------
- improve documentation
(`#133 <https://github.com/jugmac00/flask-reuploaded/issues/133>`_)

- drop support for Python 3.6
- add support for Python 3.11


1.2.0 (2021.11.07)
------------------
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def read(*parts):

setup(
name="Flask-Reuploaded",
version="1.2.1.dev0",
version="1.3.0.dev0",
url="https://github.com/jugmac00/flask-reuploaded",
project_urls={
"Source": "https://github.com/jugmac00/flask-reuploaded",
Expand All @@ -52,7 +52,7 @@ def read(*parts):
"pytest-cov",
],
},
python_requires=">= 3.6",
python_requires=">= 3.7",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
Expand All @@ -61,11 +61,11 @@ def read(*parts):
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development :: Libraries :: Python Modules",
"Framework :: Flask",
Expand Down
5 changes: 2 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
[tox]
envlist =
py36,
py37,
py38,
py39,
py310,
py311,
lint,
mypy,
coverage,
Expand Down Expand Up @@ -55,12 +55,11 @@ python_classes = Test[A-Z]*

[gh-actions]
python =
3.6: py36
3.7: py37
3.8: py38, mypy
3.9: py39, coverage
3.10: py310, pre-commit

3.11: py311

[testenv:docs]
description = generate docs in HTML format
Expand Down

0 comments on commit 54998b8

Please sign in to comment.