Skip to content

Commit

Permalink
Limit maximum version of dependencies
Browse files Browse the repository at this point in the history
Fix #2200.
  • Loading branch information
liZe committed Jul 12, 2024
1 parent 071e733 commit c345629
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ requires-python = '>=3.9'
readme = {file = 'README.rst', content-type = 'text/x-rst'}
license = {file = 'LICENSE'}
dependencies = [
'pydyf >=0.11.0',
'cffi >=0.6',
'html5lib >=1.1',
'tinycss2 >=1.3.0',
'cssselect2 >=0.1',
'Pyphen >=0.9.1',
'Pillow >=9.1.0',
'fonttools[woff] >=4.0.0',
'pydyf >=0.11.0,<0.12',
'cffi >=0.6,<2',
'html5lib >=1.1,<2',
'tinycss2 >=1.3.0,<2',
'cssselect2 >=0.1,<0.8',
'Pyphen >=0.9.1,<0.16',
'Pillow >=9.1.0,<11',
'fonttools[woff] >=4.0.0,<5',
]
classifiers = [
'Development Status :: 5 - Production/Stable',
Expand Down

0 comments on commit c345629

Please sign in to comment.