Skip to content

Commit

Permalink
pypi updates
Browse files Browse the repository at this point in the history
  • Loading branch information
sronilsson committed Feb 11, 2024
1 parent a79ccce commit 6a5f9df
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
9 changes: 6 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
Pillow
pyyaml == 5.3.1
shapely == 1.8
shapely == 1.8.0; python_version=="3.6"
shapely == 2.0.2; python_version>="3.9"
dtreeviz == 0.8.1
eli5 == 0.10.1
graphviz == 0.11
Expand All @@ -9,14 +10,16 @@ imgaug == 0.4.0
imutils == 0.5.2
matplotlib >= 3.0.3
numpy
opencv-python == 3.4.16.59
opencv-python == 3.4.16.59; python_version=="3.6"
opencv-python == 4.8.1.78; python_version>="3.9"
pandas==0.25.3;python_version=="3.6"
pandas;python_version>="3.9"
scikit-image
scipy
seaborn == 0.9.0
scikit-learn
tabulate == 0.8.3
tabulate == 0.8.3; python_version=="3.6"
tabulate == 0.9.0; python_version>="3.9"
tqdm == 4.30.0
xgboost == 0.90
yellowbrick
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

setuptools.setup(
name="Simba-UW-tf-dev",
version="1.84.4",
version="1.84.6",
author="Simon Nilsson, Jia Jie Choong, Sophia Hwang",
author_email="[email protected]",
description="Toolkit for computer classification of complex social behaviors in experimental animals",
Expand Down
5 changes: 4 additions & 1 deletion simba/mixins/geometry_mixin.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,10 @@
from shapely.geometry import (GeometryCollection, LineString, MultiLineString,
MultiPoint, MultiPolygon, Point, Polygon)
from shapely.ops import linemerge, split, triangulate, unary_union
from typing_extensions import Literal
try:
from typing_extensions import Literal
except:
from typing import Literal

from simba.mixins.image_mixin import ImageMixin
from simba.utils.checks import (check_float,
Expand Down

0 comments on commit 6a5f9df

Please sign in to comment.