Skip to content

Commit

Permalink
Depend on find_libpython as external package
Browse files Browse the repository at this point in the history
find_libpython was sourced from cocotb._vendor which is now removed in
latest version. depends one external package in this commit.

Refer below for more info:
cocotb/cocotb@ea08c7f

cocotb/cocotb#3131

cocotb/cocotb#3133
  • Loading branch information
nitheeshkm authored and themperek committed Nov 19, 2022
1 parent 1acba06 commit 3017625
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cocotb_test/simulator.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
import threading
import signal
import warnings
import cocotb._vendor.find_libpython as find_libpython
import find_libpython
import cocotb.config
import asyncio

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def read_file(fname):
packages=find_packages(),
include_package_data = True,
python_requires=">=3.7",
install_requires=["cocotb>=1.5", "pytest"],
install_requires=["cocotb>=1.5", "pytest", "find_libpython"],
entry_points={
"console_scripts": [
"cocotb=cocotb_test.cli:config",
Expand Down

0 comments on commit 3017625

Please sign in to comment.