Skip to content
This repository has been archived by the owner on Apr 11, 2024. It is now read-only.

Commit

Permalink
Release: 0.3.14
Browse files Browse the repository at this point in the history
  • Loading branch information
BobaZooba committed Sep 30, 2023
1 parent 9017a9a commit 4fa3f99
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
11 changes: 10 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ endif
#* Variables
PYTHON := python3
PYTHON_RUN := $(PYTHON) -m
VERSION := 0.1.0
VERSION := 0.0.0

#* Docker variables
IMAGE := xllm
Expand Down Expand Up @@ -130,6 +130,15 @@ pypi-upload: ## Upload package to the pypi
# make test-pypi-release VERSION=0.1.0
.PHONY: test-pypi-release
test-pypi-release: ## Release test pypi package
@if [ "$(VERSION)" = "0.0.0" ]; then \
echo "VERSION is equal to default 0.0.0"; \
echo "Please specify correct version"; \
echo "For example:"; \
echo "make test-pypi-release VERSION=1.2.3"; \
exit 1; \
else \
exit 0; \
fi
make codestyle
make check-codestyle
make mypy
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
# Setup
setup(
name="xllm",
version="0.3.13",
version="0.3.14",
description="Simple & Cutting Edge LLM Finetuning",
license_files=["LICENSE"],
long_description=open("README.md", "r", encoding="utf-8").read(),
Expand Down
2 changes: 1 addition & 1 deletion src/xllm/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

# ruff: noqa: F401

__version__ = "0.3.13"
__version__ = "0.3.14"

from . import enums, types
from .core.config import HuggingFaceConfig
Expand Down

0 comments on commit 4fa3f99

Please sign in to comment.