Skip to content

Commit

Permalink
language level 2
Browse files Browse the repository at this point in the history
  • Loading branch information
jykr committed Jun 19, 2024
1 parent 0b70f7e commit 32dd511
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Cython>=3.0.10
Cython==3.0.8
numpy<2.0.0
pandas
scipy
Expand Down
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@
long_description_content_type="text/markdown",
url="https://github.com/pinellolab/crispr-bean",
packages=find_namespace_packages(),
ext_modules=cythonize(["bean/mapping/CRISPResso2Align.pyx"]),
ext_modules=cythonize(
["bean/mapping/CRISPResso2Align.pyx"], compiler_directives={"language_level": 2}
),
include_dirs=np.get_include(),
setup_requires=[
"setuptools>=18.0",
Expand Down

0 comments on commit 32dd511

Please sign in to comment.