Skip to content

Commit e24b42c

Browse files
Hanaasagixginn8
authored andcommitted
Fix a warning under Python 3.7 (influxdata#697)
* Fix a warning under Python 3.7 Signed-off-by: Matthew McGinn <mamcgi@gmail.com>
1 parent 73503b5 commit e24b42c

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
@@ -13,6 +13,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
1313

1414
### Changed
1515
- Update test suite to add support for Python 3.7 and InfluxDB v1.6.4 and 1.7.4 (#692 thx @clslgrnc)
16+
- Update classifiers tuple to list in setup.py (#697 thx @Hanaasagi)
1617

1718
### Removed
1819

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
tests_require=test_requires,
4343
install_requires=requires,
4444
extras_require={'test': test_requires},
45-
classifiers=(
45+
classifiers=[
4646
'Development Status :: 3 - Alpha',
4747
'Intended Audience :: Developers',
4848
'License :: OSI Approved :: MIT License',
@@ -55,5 +55,5 @@
5555
'Programming Language :: Python :: 3.6',
5656
'Topic :: Software Development :: Libraries',
5757
'Topic :: Software Development :: Libraries :: Python Modules',
58-
),
58+
],
5959
)

0 commit comments

Comments
 (0)