From db2447a8cf2c43a0d947b5ac71ba98158b1e9344 Mon Sep 17 00:00:00 2001 From: alexPatrie Date: Tue, 7 May 2024 13:35:01 -0400 Subject: [PATCH] chore: bump version for release --- poetry.lock | 7 ++++--- pyproject.toml | 2 +- setup.py | 2 +- 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/poetry.lock b/poetry.lock index 98d89eb70..5e94c2628 100644 --- a/poetry.lock +++ b/poetry.lock @@ -204,7 +204,7 @@ optional = false python-versions = "*" files = [ {file = "antimony-2.14.0-py3-none-macosx_11_0_x86_64.whl", hash = "sha256:169cedd7d87e18ac91daf0c72320926483835c4787f2eda03c335e71dd63f277"}, - {file = "antimony-2.14.0-py3-none-macosx_12_0_universal2.whl", hash = "sha256:2682e7e56172186ff74250531fc6b82661bcccb7b06c3d1c6ca8c35cf0243c74"}, + {file = "antimony-2.14.0-py3-none-macosx_12_0_arm64.whl", hash = "sha256:2682e7e56172186ff74250531fc6b82661bcccb7b06c3d1c6ca8c35cf0243c74"}, {file = "antimony-2.14.0-py3-none-manylinux2014_x86_64.whl", hash = "sha256:0483e4b4d9987e2e1c360422b940227e298bddda1104ffd8cb4bb4f8bfd1e994"}, {file = "antimony-2.14.0-py3-none-win_amd64.whl", hash = "sha256:1aa3909f4e4189212c25960c7cc71a6b29b061fe6c36862e33c696a0483db06f"}, ] @@ -2436,8 +2436,8 @@ files = [ [package.dependencies] numpy = [ {version = ">=1.23.3", markers = "python_version >= \"3.11\" and python_version < \"3.12\""}, - {version = ">=1.21.2", markers = "python_version >= \"3.10\" and python_version < \"3.11\""}, {version = ">=1.26.0", markers = "python_version >= \"3.12\""}, + {version = ">=1.21.2", markers = "python_version >= \"3.10\" and python_version < \"3.11\""}, ] [package.extras] @@ -3037,8 +3037,8 @@ files = [ [package.dependencies] numpy = [ {version = ">=1.23.2,<2", markers = "python_version == \"3.11\""}, - {version = ">=1.22.4,<2", markers = "python_version < \"3.11\""}, {version = ">=1.26.0,<2", markers = "python_version >= \"3.12\""}, + {version = ">=1.22.4,<2", markers = "python_version < \"3.11\""}, ] python-dateutil = ">=2.8.2" pytz = ">=2020.1" @@ -3131,6 +3131,7 @@ optional = false python-versions = "*" files = [ {file = "phrasedml-1.3.0-py3-none-macosx_10_15_x86_64.whl", hash = "sha256:38ce69496c2b89a1325e1ae022bd3d211d51882aa6313fa35043d7c9f5bcbea0"}, + {file = "phrasedml-1.3.0-py3-none-macosx_12_0_arm64.whl", hash = "sha256:82db1a39c985ea443ac739225ea019c8dff742c1aaa9a5f3e3f8933a2d74621d"}, {file = "phrasedml-1.3.0-py3-none-macosx_13_0_arm64.whl", hash = "sha256:8f54b26d6ced9e6066ee1f757aa8912b01c80f9ca44e16ef6995054a65a821f9"}, {file = "phrasedml-1.3.0-py3-none-manylinux2014_x86_64.whl", hash = "sha256:b0e7e58cb84377d9f021c335dd2bd44a6a1e608c8f3b779a1b511d6ea2961ce6"}, {file = "phrasedml-1.3.0-py3-none-win_amd64.whl", hash = "sha256:ed44fef0e1fa9e079573e7e0735e0801442e1d63373f277f578ed69853958aba"}, diff --git a/pyproject.toml b/pyproject.toml index 6018479f2..16311fd8b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "biosimulator-processes" -version = "0.0.21" +version = "0.0.22" description = "Core implementations of process-bigraph.composite.Process aligning with BioSimulators simulator tools." authors = ["Alex Patrie "] readme = "README.md" diff --git a/setup.py b/setup.py index a4b4fd204..6c6189d2e 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup, find_packages -__version__ = "0.0.21" +__version__ = "0.0.22" with open("README.md", "r") as readme: description = readme.read()