From 8624d087f155b52185946a5f990b4ebe7bcedf8a Mon Sep 17 00:00:00 2001 From: Ismael Mendoza <11745764+ismael-mendoza@users.noreply.github.com> Date: Mon, 9 May 2022 18:12:43 -0400 Subject: [PATCH] bump version (#303) --- btk/__init__.py | 4 +++- pyproject.toml | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/btk/__init__.py b/btk/__init__.py index 784402696..01c674892 100644 --- a/btk/__init__.py +++ b/btk/__init__.py @@ -4,9 +4,11 @@ providing a framework to test user defined detection/deblending/measurement algorithms. """ +import importlib.metadata + __author__ = "btk developers" __email__ = "imendoza@umich.edu" -__version__ = "0.9.3" +__version__ = "1.0.0a1" DEFAULT_SEED = 0 diff --git a/pyproject.toml b/pyproject.toml index 87e7e8878..9fc6aeab7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -23,7 +23,7 @@ name = "blending_toolkit" packages = [{include = "btk"}] readme = "README.md" repository = "https://github.com/LSSTDESC/BlendingToolKit" -version = "0.9.3" +version = "1.0.0a1" [tool.poetry.dependencies] astropy = ">=5.0.4"