Skip to content

Commit

Permalink
Bump pinned version of wrapt to one that is compatible with py311 (Az…
Browse files Browse the repository at this point in the history
…ure#25828)

* pylint 2.9.3 requires wrapt 1.12.1. to address this on py311, we bump the version of pylint we install to ensure we get the new version of wrapt that is compatible with py311
  • Loading branch information
scbedd authored Aug 24, 2022
1 parent 9f79770 commit 9c19036
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 2 additions & 1 deletion eng/ci_tools.txt
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ codecov==2.1.0
beautifulsoup4==4.9.1
pkginfo==1.5.0.1
pip==20.3.3
wrapt<=1.12.1; python_version == '2.7'
wrapt==1.12.1
wrapt==1.14.1; python_version >= '3.11'
markupsafe==2.0.1; python_version > '2.7'
markupsafe==1.1.1; python_version == '2.7'

Expand Down
4 changes: 3 additions & 1 deletion eng/test_tools.txt
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,12 @@ Jinja2==2.11.2
markupsafe==2.0.1; python_version > '2.7'
markupsafe==1.1.1; python_version == '2.7'
wrapt==1.12.1
wrapt==1.14.1; python_version >= '3.11'

# Locking pylint and required packages
pylint==1.8.4; python_version < '3.4'
pylint==2.9.3; python_version >= '3.6'
pylint==2.9.3; python_version >= '3.6' and python_version <= '3.10'
pylint==2.14.5; python_version >= '3.11'

# python-dotenv
python-dotenv==0.15.0

0 comments on commit 9c19036

Please sign in to comment.