Skip to content

Commit

Permalink
disable some checks
Browse files Browse the repository at this point in the history
  • Loading branch information
jurgen-lentz committed Oct 30, 2024
1 parent f313d81 commit 2282b2d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,8 @@ def link_args():
extra_link_args=link_args(),
sources=[os.path.join("amplpy", "ampl.pyx")],
)
], compiler_directives={"language_level": "3", 'binding': True, "embedsignature": True}
], compiler_directives={"language_level": "3", 'binding': True, "embedsignature": True,
"boundscheck": False, "wraparound": False},
),
package_data={"": package_content()},
install_requires=["ampltools >= 0.7.5"],
Expand Down

0 comments on commit 2282b2d

Please sign in to comment.