Skip to content

Commit

Permalink
Merge pull request #122 from jjnicola/comma
Browse files Browse the repository at this point in the history
Add missing comma to classifier list
  • Loading branch information
bjoernricks authored Oct 14, 2019
2 parents 08fc588 + f8754a7 commit e050866
Show file tree
Hide file tree
Showing 3 changed files with 68 additions and 65 deletions.
2 changes: 1 addition & 1 deletion Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ url = "https://pypi.org/simple"
[packages]
psutil = "*"
redis = ">=3.0.1"
ospd = {git = "https://github.com/greenbone/ospd.git",ref = "master",editable = true}
ospd = ">=2.0.0"

[dev-packages]
pylint = "*"
Expand Down
127 changes: 65 additions & 62 deletions Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
'Intended Audience :: System Administrators',

# Pick your license as you wish (should match "license" above)
'License :: OSI Approved :: GNU General Public License v2 or any later version (GPLv2+)'
'License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)',

# Specify the Python versions you support here. In particular, ensure
# that you indicate whether you support Python 2, Python 3 or both.
Expand All @@ -66,7 +66,7 @@

python_requires='>=3.5',
install_requires=[
'ospd>=2.0a3',
'ospd>=2.0.0',
'redis>=3.0.1',
'psutil'
],
Expand Down

0 comments on commit e050866

Please sign in to comment.