Skip to content

Commit

Permalink
Merge pull request #688 from SolarAquarion/patch-2
Browse files Browse the repository at this point in the history
Fixing for python 3.8
  • Loading branch information
Tizonia authored Feb 20, 2020
2 parents 8324a86 + 5a823a4 commit 857021a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,10 @@ endif
sqlite3_dep = dependency('sqlite3', required: true, version: '>=3.7.1')

pymod = import('python')
python3_dep = dependency('python3', required: true, version: '>=3.5')
python3_dep = dependency('python3-embed', required: false, version: '>=3.5')
if not python3_dep.found()
python3_dep = dependency('python3', version: '>=3.5.0')
endif

if enable_docs
python3 = pymod.find_installation(
Expand Down

0 comments on commit 857021a

Please sign in to comment.