Skip to content

Commit

Permalink
Merge pull request #77 from juliangilbey/fix-setup-classifiers
Browse files Browse the repository at this point in the history
Make classifiers a list not a tuple
  • Loading branch information
stchris authored Jul 1, 2022
2 parents 858354b + ad6b529 commit bfa52f7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ Unreleased
- switch to poetry and pytest
- dropped support for Python 3.4-3.6 and pypy
- Prevent XML SAX vulnerability: External Entities injection ([#60](https://github.com/stchris/untangle/issues/60))
- fixed setup.py warning ([#77](https://github.com/stchris/untangle/pull/77/))

1.1.1
- added generic SAX feature toggle ([#26](https://github.com/stchris/untangle/pull/26))
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
url="http://github.com/stchris//untangle",
py_modules=["untangle"],
license="MIT",
classifiers=(
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Natural Language :: English",
Expand All @@ -27,7 +27,7 @@
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
),
],
)

# vim: set expandtab ts=4 sw=4:

0 comments on commit bfa52f7

Please sign in to comment.