Skip to content

Commit

Permalink
Switch classifiers from a tuple to a list (#784)
Browse files Browse the repository at this point in the history
* Switch classifiers from a tuple to a list

Recommended by @abravalheri in pypa/setuptools#3707 (comment)

* Fix github URL for pycqa/flake8 precommit hook

Co-authored-by: jyejare <jyejare@redhat.com>
(cherry picked from commit 8012321)
  • Loading branch information
JacobCallahan authored and web-flow committed Nov 24, 2022
1 parent 4fec815 commit fb002dc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Expand Up @@ -14,7 +14,7 @@ repos:
rev: 22.3.0
hooks:
- id: black
- repo: https://gitlab.com/pycqa/flake8
- repo: https://github.com/pycqa/flake8
rev: 3.9.2
hooks:
- id: flake8
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Expand Up @@ -32,7 +32,7 @@
include_package_data=True,
license='GNU GPL v3.0',
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=(
classifiers=[
'Development Status :: 1 - Planning',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
Expand All @@ -42,5 +42,5 @@
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
),
],
)

0 comments on commit fb002dc

Please sign in to comment.