Skip to content

Commit

Permalink
fix(log): limit pyad to 0.6.2 for correct log level (#586)
Browse files Browse the repository at this point in the history
With latest version 0.36.0 of QDT there are no logs display on Windows.

This comes from an update of python-win-ad to 0.6.3 that cause log level
of pyad to be used for all python package.

We limit version of python-win-ad to 0.6.2 to restore log display.

closes #585
  • Loading branch information
jmkerloch authored Nov 29, 2024
2 parents d3e72d1 + bf67a0f commit 3534857
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion requirements/base.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ imagesize>=1.4,<1.5
packaging>=20,<25
pypac>=0.16.3,<1
python-rule-engine>=0.5,<0.6
python-win-ad>=0.6.2,<1 ; sys_platform == 'win32'
python-win-ad==0.6.2 ; sys_platform == 'win32'
pyyaml>=5.4,<7
pywin32==308 ; sys_platform == 'win32'
requests>=2.31,<3
Expand Down

0 comments on commit 3534857

Please sign in to comment.