Skip to content

Commit

Permalink
Merge pull request microsoft#436 from tonybaloney/patch_msrest
Browse files Browse the repository at this point in the history
Update msrest dependency
  • Loading branch information
tonybaloney committed Oct 31, 2022
2 parents 001f4d2 + 17eb877 commit 10dfcd3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pythonpackage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
strategy:
max-parallel: 5
matrix:
python-version: [2.7, 3.6, 3.7, 3.8, 3.9, "3.10", "3.11"]
python-version: [3.6, 3.7, 3.8, 3.9, "3.10", "3.11"]

steps:
- uses: actions/checkout@v1
Expand All @@ -20,7 +20,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install "msrest>=0.6.0,<0.7.0"
pip install azure-devops/
- name: Python compile
run: |
python -m compileall .
Expand Down
8 changes: 3 additions & 5 deletions azure-devops/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from setuptools import setup, find_packages

NAME = "azure-devops"
VERSION = "6.0.0b4"
VERSION = "7.0.0"

# To install the library, run the following
#
Expand All @@ -16,18 +16,15 @@
# http://pypi.python.org/pypi/setuptools

REQUIRES = [
"msrest>=0.6.0,<0.7.0"
"msrest>=0.7.1,<0.8.0"
]

CLASSIFIERS = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
Expand All @@ -50,6 +47,7 @@
classifiers=CLASSIFIERS,
packages=find_packages(),
include_package_data=True,
python_requires=">=3.6",
long_description="""\
"""
)

0 comments on commit 10dfcd3

Please sign in to comment.