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.7
Browse files Browse the repository at this point in the history
  • Loading branch information
BobaZooba committed Sep 30, 2023
1 parent 035b161 commit fbedeba
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 1 deletion.
18 changes: 18 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -100,3 +100,21 @@ mypy: ## Run static code analyzer
.PHONY: lint
# lint: unit-test integration-test check-codestyle mypy check-safety ## Run all checks
lint: check-codestyle mypy unit-test ## Run all checks

#* Develop
.PHONY: delete-dist
delete-dist: ## Delete all dist builds
rm -rf /dist

.PHONY: build-dist
build-dist: ## Build dist
$(PYTHON) setup.py bdist_wheel
$(PYTHON) setup.py sdist

.PHONY: test-pypi-upload
test-pypi-upload: ## Upload package to the test pypi
twine upload dist/* -r testpypi

.PHONY: pypi-upload
pypi-upload: ## Upload package to the pypi
twine upload dist/* -r pypi
7 changes: 6 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,12 @@
"pytest-cov",
]

extras["dev"] = extras["quality"] + extras["tests"]
extras["build"] = [
"wheel",
"twine",
]

extras["dev"] = extras["quality"] + extras["tests"] + extras["build"]

extras["deepspeed"] = ["deepspeed"]

Expand Down

0 comments on commit fbedeba

Please sign in to comment.