Skip to content

Commit 10dfcd3

Browse files
authored
Merge pull request microsoft#436 from tonybaloney/patch_msrest
Update msrest dependency
2 parents 001f4d2 + 17eb877 commit 10dfcd3

File tree

2 files changed

+5
-7
lines changed

2 files changed

+5
-7
lines changed

.github/workflows/pythonpackage.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
strategy:
1010
max-parallel: 5
1111
matrix:
12-
python-version: [2.7, 3.6, 3.7, 3.8, 3.9, "3.10", "3.11"]
12+
python-version: [3.6, 3.7, 3.8, 3.9, "3.10", "3.11"]
1313

1414
steps:
1515
- uses: actions/checkout@v1
@@ -20,7 +20,7 @@ jobs:
2020
- name: Install dependencies
2121
run: |
2222
python -m pip install --upgrade pip
23-
pip install "msrest>=0.6.0,<0.7.0"
23+
pip install azure-devops/
2424
- name: Python compile
2525
run: |
2626
python -m compileall .

azure-devops/setup.py

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
from setuptools import setup, find_packages
77

88
NAME = "azure-devops"
9-
VERSION = "6.0.0b4"
9+
VERSION = "7.0.0"
1010

1111
# To install the library, run the following
1212
#
@@ -16,18 +16,15 @@
1616
# http://pypi.python.org/pypi/setuptools
1717

1818
REQUIRES = [
19-
"msrest>=0.6.0,<0.7.0"
19+
"msrest>=0.7.1,<0.8.0"
2020
]
2121

2222
CLASSIFIERS = [
2323
'Development Status :: 4 - Beta',
2424
'Intended Audience :: Developers',
2525
'Intended Audience :: System Administrators',
2626
'Programming Language :: Python',
27-
'Programming Language :: Python :: 2',
28-
'Programming Language :: Python :: 2.7',
2927
'Programming Language :: Python :: 3',
30-
'Programming Language :: Python :: 3.5',
3128
'Programming Language :: Python :: 3.6',
3229
'Programming Language :: Python :: 3.7',
3330
'Programming Language :: Python :: 3.8',
@@ -50,6 +47,7 @@
5047
classifiers=CLASSIFIERS,
5148
packages=find_packages(),
5249
include_package_data=True,
50+
python_requires=">=3.6",
5351
long_description="""\
5452
"""
5553
)

0 commit comments

Comments
 (0)