Skip to content

Commit

Permalink
Upgrade dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
vzvyagintsev committed Jun 18, 2024
1 parent acd193a commit 774c007
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
inputs:
py_version:
description: 'Python version'
default: '3.7'
default: '3.8'
required: false
type: string

Expand Down
19 changes: 9 additions & 10 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
long_description=long_description,
download_url='https://github.com/devopshq/crosspm.git',
entry_points={'console_scripts': ['crosspm=crosspm.__main__:main']},
python_requires='>=3.6.0',
python_requires='>=3.8.0',
classifiers=[
'Development Status :: {}'.format(develop_status),
'Environment :: Console',
Expand All @@ -50,9 +50,10 @@
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
],
keywords=[
'development',
Expand All @@ -75,19 +76,17 @@
tests_require=[
"pytest>=5.2",
"pytest-flask>=1.0.0",
"PyYAML>=5.2",
"PyYAML>=6.0",
],
install_requires=[
"requests>=2.25.1,<3.0.0",
'urllib3<1.25,>=1.21.1',
"requests>=2.30.0,<3.0.0",
'urllib3>=2.2.0',
'docopt==0.6.2',
"PyYAML>=5.2,<6.0",
"PyYAML>=6.0",
"dohq-artifactory>=0.8.3",
"Jinja2>=2.11",
"Jinja2>=3.1.3",
'patool==1.12', # need for pyunpack
'pyunpack==0.2',
# 'pyopenssl>=16.2.0',
# 'cryptography>=1.7',
],
package_data={
'': [
Expand Down

0 comments on commit 774c007

Please sign in to comment.