Skip to content

Commit

Permalink
setup.py: use plyvel=1.2.0 instead of 1.0.5
Browse files Browse the repository at this point in the history
Compilation of `plyvel` 1.0.5 proceeds when using Python 3.7
and 3.8, but fails with 3.9.

If using `plyvel` 1.2 or 1.3, no compilation is necessary,
as the packages are downloaded from `pip` without issue.

Version 1.2.0 is available in Ubuntu 20.04, and 1.3.0 is available
in Arch, so these are good versions to use as reference.
  • Loading branch information
belikor committed Jul 10, 2021
1 parent 8c79740 commit fd7a9a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

PLYVEL = []
if sys.platform.startswith('linux'):
PLYVEL.append('plyvel==1.0.5')
PLYVEL.append('plyvel==1.2.0')

setup(
name=__name__,
Expand Down

0 comments on commit fd7a9a9

Please sign in to comment.