Skip to content

Commit

Permalink
added pyproject.toml and updated GeneModelAnalysis.pyx to fiix int64 bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Acribbs committed Oct 25, 2024
1 parent a69649d commit ccbd109
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
2 changes: 1 addition & 1 deletion cgat/GeneModelAnalysis.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ class Counter:

cimport numpy
DTYPE_INT = numpy.int64
ctypedef numpy.int_t DTYPE_INT_t
ctypedef numpy.int64_t DTYPE_INT_t
DTYPE_FLOAT = numpy.float64
ctypedef numpy.float_t DTYPE_FLOAT_t

Expand Down
9 changes: 9 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
[build-system]
requires = [
"setuptools>=64.0",
"wheel",
"Cython>=0.29.35",
"numpy",
"pysam",
]
build-backend = "setuptools.build_meta"

0 comments on commit ccbd109

Please sign in to comment.