Skip to content

Commit

Permalink
Merge pull request #1098 from girder/simplejpeg-old-version
Browse files Browse the repository at this point in the history
Specify version of simplejpeg for old python
  • Loading branch information
manthey authored Apr 7, 2023
2 parents 8756325 + f80aaf5 commit d78ff91
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,10 @@ def prerelease_local_scheme(version):
'converter': [f'large-image-converter{limit_version}'],
'colormaps': ['matplotlib'],
'tiledoutput': ['pyvips'],
'performance': ['simplejpeg'],
'performance': [
'simplejpeg ; python_version >= "3.7"',
'simplejpeg<1.6.6 ; python_version < "3.7"',
],
}
sources = {
'bioformats': [f'large-image-source-bioformats{limit_version}'],
Expand Down

0 comments on commit d78ff91

Please sign in to comment.