Skip to content

Commit

Permalink
version bump + clean build artifacts (#483)
Browse files Browse the repository at this point in the history
  • Loading branch information
nihit authored Jul 23, 2023
1 parent 20d2f1f commit 9333c06
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
8 changes: 7 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,13 @@ clean-pyc:
clean-test:
rm -f .coverage
rm -f .coverage.*
rm -fr .pytest_cache

clean: clean-pyc clean-test
clean-build:
rm -fr build/
rm -fr dist/

clean: clean-pyc clean-test clean-build

test: clean
OPENAI_API_KEY=test_key ANTHROPIC_API_KEY=test_key REFUEL_API_KEY=test_key pytest
Expand All @@ -43,6 +48,7 @@ help:
@echo 'dev: install autolabel from source with dev dependencies'
@echo 'clean-pyc: remove Python file artifacts'
@echo 'clean-test: remove test and coverage artifacts'
@echo 'clean-build: remove build artifacts'
@echo 'clean: remove all build, test and coverage artifacts'
@echo 'test: clean previous build and test artifacts, and run all tests'
@echo '----'
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "refuel-autolabel"
version = "0.0.8"
version = "0.0.9"
description = "Label, clean and enrich text datasets with LLMs"
readme = "README.md"
authors = [{ name = "Refuel.ai", email = "[email protected]" }]
Expand Down

0 comments on commit 9333c06

Please sign in to comment.