Skip to content

Commit bfa52f7

Browse files
authored
Merge pull request #77 from juliangilbey/fix-setup-classifiers
Make classifiers a list not a tuple
2 parents 858354b + ad6b529 commit bfa52f7

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ Unreleased
1212
- switch to poetry and pytest
1313
- dropped support for Python 3.4-3.6 and pypy
1414
- Prevent XML SAX vulnerability: External Entities injection ([#60](https://github.com/stchris/untangle/issues/60))
15+
- fixed setup.py warning ([#77](https://github.com/stchris/untangle/pull/77/))
1516

1617
1.1.1
1718
- added generic SAX feature toggle ([#26](https://github.com/stchris/untangle/pull/26))

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
url="http://github.com/stchris//untangle",
1818
py_modules=["untangle"],
1919
license="MIT",
20-
classifiers=(
20+
classifiers=[
2121
"Development Status :: 5 - Production/Stable",
2222
"Intended Audience :: Developers",
2323
"Natural Language :: English",
@@ -27,7 +27,7 @@
2727
"Programming Language :: Python :: 3.8",
2828
"Programming Language :: Python :: 3.9",
2929
"Programming Language :: Python :: 3.10",
30-
),
30+
],
3131
)
3232

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

0 commit comments

Comments
 (0)