Skip to content

Commit

Permalink
Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
jph00 committed Dec 2, 2020
1 parent 46ca233 commit 4499e59
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
.ONESHELL:
SHELL := /bin/bash

all: release
.PHONY: all release conda_release pypi clean dict

release: pypi
fastrelease_conda_package --upload_user fastai
fastrelease_bump_version

conda_release:
fastrelease_conda_package --upload_user fastai

pypi: dist
twine upload --repository pypi dist/*

dist: clean
python setup.py sdist bdist_wheel

clean:
rm -rf dist

0 comments on commit 4499e59

Please sign in to comment.