From 304a9d8656ea7a6f479eae702c397d90b04a4062 Mon Sep 17 00:00:00 2001 From: Talmo Pereira Date: Sat, 13 Apr 2024 20:48:51 -0700 Subject: [PATCH] Bump to v0.1.0 (#78) * Unconstrain lower bound on pyver for pypi * Bump package ver --- pyproject.toml | 3 ++- sleap_io/__init__.py | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 43278a5e..0a912551 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -10,10 +10,11 @@ authors = [ {name = "Talmo Pereira", email = "talmo@salk.edu"} ] description="Standalone utilities for working with pose data from SLEAP and other tools." -requires-python = ">=3.8" +requires-python = ">=3.7" keywords = ["sleap", "pose tracking", "pose estimation", "behavior"] license = {text = "BSD-3-Clause"} classifiers = [ + "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", diff --git a/sleap_io/__init__.py b/sleap_io/__init__.py index b7f19663..f945d711 100644 --- a/sleap_io/__init__.py +++ b/sleap_io/__init__.py @@ -2,7 +2,7 @@ # Define package version. # This is read dynamically by setuptools in pyproject.toml to determine the release version. -__version__ = "0.0.14" +__version__ = "0.1.0" from sleap_io.model.skeleton import Node, Edge, Skeleton, Symmetry from sleap_io.model.video import Video