Skip to content

add pkglint test and fix some warnings #18

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jan 15, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,7 @@ jobs:
tox-environment:
- docs
- style
- pkglint

steps:
- uses: actions/checkout@v3
Expand Down
19 changes: 8 additions & 11 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,27 +1,24 @@
[metadata]
name = virtualenvwrapper
author = Doug Hellmann
author-email = doug@doughellmann.com
author_email = doug@doughellmann.com
summary = Enhancements to virtualenv
description-file = README.txt
description_file = README.txt
license = MIT
classifier =
Development Status :: 5 - Production/Stable
License :: OSI Approved :: MIT License
Programming Language :: Python
Programming Language :: Python :: 2
Programming Language :: Python :: 2.6
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3
Programming Language :: Python :: 3.3
Programming Language :: Python :: 3.4
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Intended Audience :: Developers
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Intended Audience :: Developers
Environment :: Console
keywords =
virtualenv
home-page = https://virtualenvwrapper.readthedocs.io/
home_page = https://virtualenvwrapper.readthedocs.io/
zip_safe = False

[files]
Expand Down
10 changes: 10 additions & 0 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -35,3 +35,13 @@ deps =
-r{toxinidir}/requirements.txt
-r{toxinidir}/docs/requirements.txt
commands = python setup.py build_sphinx

[testenv:pkglint]
deps=
pbr
twine
check-python-versions
commands=
python setup.py sdist
twine check dist/*.tar.gz
check-python-versions --only setup.py,setup.cfg,.github/workflows/test.yml