Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
subprocess.call(["make", "so"], env=env)

# Build the CFFI headers
subprocess.call(["pip", "install", "cffi~=1.1"], env=env)
subprocess.call(["pip", "install", "cffi>=2.0.0"], env=env)
subprocess.call(["make", "ffi"], env=env)
Comment thread
jainal09 marked this conversation as resolved.
Outdated

with open("pybluemonday/__init__.py", "r", encoding="utf8") as f:
Expand Down Expand Up @@ -65,6 +65,6 @@
# I'm not sure what this value is supposed to be
build_golang={"root": "github.com/ColdHeat/pybluemonday"},
ext_modules=[setuptools.Extension("pybluemonday/bluemonday", ["bluemonday.go"])],
setup_requires=["setuptools-golang==2.7.0", "cffi~=1.1"],
install_requires=["cffi~=1.1"],
setup_requires=["setuptools-golang==2.9.0", "cffi>=2.0.0"],
Comment thread
jainal09 marked this conversation as resolved.
Outdated
install_requires=["cffi>=2.0.0"],
Comment thread
jainal09 marked this conversation as resolved.
Outdated
)
Loading