Skip to content

Commit

Permalink
cpython: bsddb has been remove in Python 3
Browse files Browse the repository at this point in the history
  • Loading branch information
valgur committed Nov 13, 2023
1 parent 220c472 commit 938ca4f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion recipes/cpython/all/test_package/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,9 @@ def test(self):
if self._supports_modules:
self._test_module("gdbm", self._cpython_option("with_gdbm"))
self._test_module("bz2", self._cpython_option("with_bz2"))
self._test_module("bsddb", self._cpython_option("with_bsddb"))
self._test_module("ssl", self._cpython_option("with_ssl"))
if self._py_version.major < 3:
self._test_module("bsddb", self._cpython_option("with_bsddb"))
self._test_module("lzma", self._cpython_option("with_lzma"))
self._test_module("tkinter", self._cpython_option("with_tkinter"))
os.environ["TERM"] = "ansi"
Expand Down

0 comments on commit 938ca4f

Please sign in to comment.