Skip to content

Commit

Permalink
fix(setup): loosen dependencies
Browse files Browse the repository at this point in the history
Some latest Ubuntu versions can only install pyyaml 6.02
  • Loading branch information
k-dovgan authored Nov 7, 2024
1 parent 0787800 commit 39333d4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def readme():
'lxml',
'typing-extensions',
'ansi2html',
'pyyaml==6.0'
'pyyaml>=6.0'
],
extras_require={
'p4': [p4],
Expand All @@ -59,7 +59,7 @@ def readme():
'types-requests',
'selenium==3.141',
'urllib3==1.26.15', # This is required for selenium-3.141 to work correctly
'types-PyYAML==6.0',
'types-PyYAML>=6.0',
'wheel'
]
},
Expand Down

0 comments on commit 39333d4

Please sign in to comment.