From afaa71bb5609aaf9da13bfae602e0c108698f0fd Mon Sep 17 00:00:00 2001 From: Fumito Hamamura Date: Mon, 15 Jul 2024 23:54:09 +0900 Subject: [PATCH] DIST: Release v0.10.1 --- lifelib/__init__.py | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lifelib/__init__.py b/lifelib/__init__.py index f95a3ab..27c6c06 100644 --- a/lifelib/__init__.py +++ b/lifelib/__init__.py @@ -1,7 +1,7 @@ import os.path from lifelib.commands.create import create -VERSION = (0, 10, 0) +VERSION = (0, 10, 1) __version__ = '.'.join([str(x) for x in VERSION]) diff --git a/setup.py b/setup.py index 3af9c32..a280572 100644 --- a/setup.py +++ b/setup.py @@ -179,7 +179,7 @@ def get_package_data(top_dirs: list): # your project is installed. For an analysis of "install_requires" vs pip's # requirements files see: # https://packaging.python.org/en/latest/requirements.html - install_requires=['modelx>=0.24.0'], + install_requires=['modelx>=0.26.0'], # If your project only runs on certain Python versions, # setting the python_requires argument to the appropriate PEP 440 version