Skip to content

Commit 774c007

Browse files
author
vzvyagintsev
committed
Upgrade dependencies
1 parent acd193a commit 774c007

File tree

2 files changed

+10
-11
lines changed

2 files changed

+10
-11
lines changed

.github/workflows/build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
inputs:
66
py_version:
77
description: 'Python version'
8-
default: '3.7'
8+
default: '3.8'
99
required: false
1010
type: string
1111

setup.py

+9-10
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
long_description=long_description,
4242
download_url='https://github.com/devopshq/crosspm.git',
4343
entry_points={'console_scripts': ['crosspm=crosspm.__main__:main']},
44-
python_requires='>=3.6.0',
44+
python_requires='>=3.8.0',
4545
classifiers=[
4646
'Development Status :: {}'.format(develop_status),
4747
'Environment :: Console',
@@ -50,9 +50,10 @@
5050
'License :: OSI Approved :: MIT License',
5151
'Natural Language :: English',
5252
'Programming Language :: Python :: 3',
53-
'Programming Language :: Python :: 3.6',
54-
'Programming Language :: Python :: 3.7',
5553
'Programming Language :: Python :: 3.8',
54+
'Programming Language :: Python :: 3.9',
55+
'Programming Language :: Python :: 3.10',
56+
'Programming Language :: Python :: 3.11',
5657
],
5758
keywords=[
5859
'development',
@@ -75,19 +76,17 @@
7576
tests_require=[
7677
"pytest>=5.2",
7778
"pytest-flask>=1.0.0",
78-
"PyYAML>=5.2",
79+
"PyYAML>=6.0",
7980
],
8081
install_requires=[
81-
"requests>=2.25.1,<3.0.0",
82-
'urllib3<1.25,>=1.21.1',
82+
"requests>=2.30.0,<3.0.0",
83+
'urllib3>=2.2.0',
8384
'docopt==0.6.2',
84-
"PyYAML>=5.2,<6.0",
85+
"PyYAML>=6.0",
8586
"dohq-artifactory>=0.8.3",
86-
"Jinja2>=2.11",
87+
"Jinja2>=3.1.3",
8788
'patool==1.12', # need for pyunpack
8889
'pyunpack==0.2',
89-
# 'pyopenssl>=16.2.0',
90-
# 'cryptography>=1.7',
9190
],
9291
package_data={
9392
'': [

0 commit comments

Comments
 (0)