diff --git a/docker/Dockerfile b/docker/Dockerfile index 15f5cba..ea604a4 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -7,5 +7,6 @@ RUN git clone https://github.com/prismadic/magnet.git magnet WORKDIR /magnet_node/magnet RUN pip install --no-cache-dir -r requirements.txt +RUN python3.11 setup.py install CMD ["python", "/magnet_node/magnet/docker/scripts/main.py"] \ No newline at end of file diff --git a/docs/conf.py b/docs/conf.py index 45cc2d8..51323b7 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -11,7 +11,7 @@ project = 'magnet' copyright = '2023, Prismadic, LLC' author = 'Prismadic, LLC.' -release = '0.2.6' +release = '0.2.7' # -- General configuration --------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration @@ -29,7 +29,7 @@ display_github = True html_logo = "../magnet.png" pygments_style = 'dracula' -version = "v0.2.6" +version = "v0.2.7" release = "latest" # -- Options for HTML output ------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output diff --git a/pyproject.toml b/pyproject.toml index 8ee5fd4..b873a92 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "llm_magnet" -version = "0.2.6" +version = "0.2.7" description = "the small distributed language model toolkit. fine-tune state-of-the-art LLMs anywhere, rapidly." readme = "dynamic" diff --git a/setup.py b/setup.py index ed8721b..f5a2ba3 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ setup( name='llm_magnet', - version='0.2.6', + version='0.2.7', description="the small distributed language model toolkit. fine-tune state-of-the-art LLMs anywhere, rapidly.", long_description=open('README.md').read(), long_description_content_type='text/markdown',