Skip to content

Commit

Permalink
Update install_requires to install setuptools for versions >= 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
lhendrick-t10 committed Jul 19, 2024
1 parent fe1fc3a commit 20e7637
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
2 changes: 2 additions & 0 deletions Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ coverage = "*"
pyyaml = "*"
xmltodict = "*"
argcomplete = "*"
urllib3 = ">= 1.21.1, <= 1.24"
chardet = ">= 3.0.2, < 3.1.0"

[scripts]
test = "pytest test --cov=awsume --cov-report term"
Expand Down
2 changes: 1 addition & 1 deletion awsume/__data__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version = '4.5.5.rc'
version = '4.5.6.rc'

name = 'awsume'
author = 'Trek10, Inc'
Expand Down
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@
'psutil',
'pluggy',
'pyyaml',
'urllib3 >= 1.21.1, <= 1.24',
'chardet >= 3.0.2, < 3.1.0',
'setuptools; python_version >= "3.12"'
],
extras_require={
'saml': ['xmltodict'],
Expand All @@ -41,7 +44,7 @@
'awsume-autocomplete=awsume_autocomplete:main',
],
},
python_requires='>=3.5',
python_requires='>=3.6',
cmdclass={
'install': CustomInstall,
},
Expand Down

0 comments on commit 20e7637

Please sign in to comment.