Skip to content

Commit

Permalink
v0.2.10 (#57)
Browse files Browse the repository at this point in the history
  • Loading branch information
srivarra authored Jul 13, 2023
1 parent 14ae319 commit 49aae17
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ dependencies = [
"Cython>=0.29.24",
"matplotlib>=3",
"numpy>=1.2",
"pandas>=1.3",
"pandas>=2",
"scikit-image>=0.19",
"alpineer>=0.1.5",
"xarray>=2022",
"alpineer>=0.1.9",
"xarray>=2023",
]
name = "mibi-bin-tools"
authors = [{ name = "Angelo Lab", email = "[email protected]" }]
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
from pathlib import Path
from typing import Tuple
from Cython.Build import cythonize
from Cython.Compiler.Options import get_directive_defaults
from setuptools import Extension, setup
Expand All @@ -8,7 +9,7 @@

CYTHON_PROFILE_MODE = False

CYTHON_MACROS: tuple[str,str] = None
CYTHON_MACROS: Tuple[str,str] = None

if CYTHON_PROFILE_MODE:
_compiler_directives["linetrace"] = True
Expand Down

0 comments on commit 49aae17

Please sign in to comment.