Skip to content

Commit

Permalink
Update supported Python versions.
Browse files Browse the repository at this point in the history
  • Loading branch information
clokep committed Dec 23, 2022
1 parent 3867f62 commit 0a761dc
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:

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

steps:
- uses: actions/checkout@v2
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ Changelog
* Various internal improvements, including type hints and f-strings.
* Many minor bugs fixed and additional compatibility with MediaWiki.
* Changed packaging to use setuptools declarative config in ``setup.cfg``.
* Support Python 3.10 and 3.11, drop support for Python 3.6.

0.4 (May 29, 2020)
==================
Expand Down
6 changes: 4 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = mwcomposerfromhell
version = 0.5dev
version = 0.5
description = Convert the parsed MediaWiki wikicode (using mwparserfromhell) to HTML.
long_description = file: README.rst
long_description_content_type = text/x-rst
Expand All @@ -16,11 +16,13 @@ classifiers=
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
License :: OSI Approved :: ISC License (ISCL)

[options]
packages = find:
python_requires = >=3.6
python_requires = >=3.7
install_requires = mwparserfromhell>=0.6.2

[options.extras_require]
Expand Down

0 comments on commit 0a761dc

Please sign in to comment.