Skip to content

Commit

Permalink
Pre-release version.
Browse files Browse the repository at this point in the history
  • Loading branch information
etienne committed Jan 16, 2020
1 parent f6536f8 commit 6a7a9d1
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 6 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,19 @@ test:
html:
cd docs && make html

build:
test-build:
python setup.py sdist bdist_wheel
twine check dist/*
# cf
# https://realpython.com/pypi-publish-python-package/#different-ways-of-calling-a-package
# https://packaging.python.org/tutorials/packaging-projects/
python -m twine upload --repository-url https://test.pypi.org/legacy/ dist/*

build:
python setup.py sdist bdist_wheel
twine check dist/*
python -m twine upload --repository-url https://pypi.org/legacy/ dist/*

clean:
rm -R dist/
rm -R build/
Expand Down
2 changes: 1 addition & 1 deletion inpystem/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
name = 'inpystem'

# Related PEP: https://www.python.org/dev/peps/pep-0440/
version = "0.1"
version = "0.1rc"
description = "A python library for STEM acquisition inpainting."
license = 'MIT'

Expand Down

0 comments on commit 6a7a9d1

Please sign in to comment.