From 49aae17ac76547352c2347fc73256ca20f7127fa Mon Sep 17 00:00:00 2001 From: Sricharan Reddy Varra Date: Thu, 13 Jul 2023 16:54:43 -0700 Subject: [PATCH] v0.2.10 (#57) --- pyproject.toml | 6 +++--- setup.py | 3 ++- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 3df05b0..6d3e47b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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 = "theangelolab@gmail.com" }] diff --git a/setup.py b/setup.py index 2ae1e35..0511111 100644 --- a/setup.py +++ b/setup.py @@ -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 @@ -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