Skip to content

Commit

Permalink
Fix minimum dependencies not specified
Browse files Browse the repository at this point in the history
- Add missing "s" to install_require => install_requires
- Specify minimum versions
  • Loading branch information
kofrezo committed Aug 29, 2024
1 parent 8918181 commit 41f0793
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,9 @@
'adminapi=adminapi.__main__:main',
],
},
install_require=[
'paramiko',
'netaddr',
install_requires=[
'paramiko~=2.10',
'netaddr~=1.0',
],
author='InnoGames System Administration',
author_email='[email protected]',
Expand Down

0 comments on commit 41f0793

Please sign in to comment.