Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

Release History
===============
0.2.4
++++++
* pin setuptools to 70.0.0

0.2.3
++++++
* `azdev linter`: Fix `list index out of range` in missing_command_test_coverage regex
Expand Down
2 changes: 1 addition & 1 deletion azdev/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
# license information.
# -----------------------------------------------------------------------------

__VERSION__ = '0.2.3'
__VERSION__ = '0.2.4'
2 changes: 1 addition & 1 deletion azdev/operations/testtool/tests/test_profile_context.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
class TestProfileContext(unittest.TestCase):

def test_profile_ok(self):
target_profiles = ['latest', '2017-03-09-profile', '2018-03-01-hybrid', '2019-03-01-hybrid']
target_profiles = ['latest']

for profile in target_profiles:
with ProfileContext(profile):
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@
'packaging',
'tqdm',
'wheel==0.30.0',
'setuptools==70.0.0',
'microsoft-security-utilities-secret-masker~=1.0.0b4'
],
package_data={
Expand Down
Loading