bump v0.9.6
This commit is contained in:
29
Makefile
29
Makefile
@@ -1,21 +1,16 @@
|
|||||||
.PHONY: help
|
dist: setup.py lektor_groupby/*
|
||||||
help:
|
|
||||||
@echo 'commands:'
|
|
||||||
@echo ' dist'
|
|
||||||
|
|
||||||
dist-env:
|
|
||||||
@echo Creating virtual environment...
|
|
||||||
@python3 -m venv 'dist-env'
|
|
||||||
@source dist-env/bin/activate && pip install twine
|
|
||||||
|
|
||||||
.PHONY: dist
|
|
||||||
dist: dist-env
|
|
||||||
[ -z "$${VIRTUAL_ENV}" ] # you can not do this inside a virtual environment.
|
|
||||||
rm -rf dist
|
|
||||||
@echo Building...
|
@echo Building...
|
||||||
python3 setup.py sdist bdist_wheel
|
python3 setup.py sdist bdist_wheel
|
||||||
@echo
|
|
||||||
rm -rf ./*.egg-info/ ./build/ MANIFEST
|
rm -rf ./*.egg-info/ ./build/ MANIFEST
|
||||||
|
|
||||||
|
env-publish:
|
||||||
|
@echo Creating virtual environment...
|
||||||
|
@python3 -m venv 'env-publish'
|
||||||
|
@source env-publish/bin/activate && pip install twine
|
||||||
|
|
||||||
|
.PHONY: publish
|
||||||
|
publish: dist env-publish
|
||||||
|
[ -z "$${VIRTUAL_ENV}" ] # you can not do this inside a virtual environment.
|
||||||
@echo Publishing...
|
@echo Publishing...
|
||||||
@echo "\033[0;31mEnter your PyPI token:\033[0m"
|
@echo "\033[0;31mEnter PyPI token in password prompt:\033[0m"
|
||||||
@source dist-env/bin/activate && export TWINE_USERNAME='__token__' && twine upload dist/*
|
@source env-publish/bin/activate && export TWINE_USERNAME='__token__' && twine upload dist/*
|
||||||
|
|||||||
@@ -2,4 +2,4 @@
|
|||||||
name = GroupBy Examples
|
name = GroupBy Examples
|
||||||
|
|
||||||
[packages]
|
[packages]
|
||||||
lektor-groupby = 0.9.3
|
lektor-groupby = 0.9.6
|
||||||
|
|||||||
2
setup.py
2
setup.py
@@ -13,7 +13,7 @@ setup(
|
|||||||
},
|
},
|
||||||
author='relikd',
|
author='relikd',
|
||||||
url='https://github.com/relikd/lektor-groupby-plugin',
|
url='https://github.com/relikd/lektor-groupby-plugin',
|
||||||
version='0.9.5',
|
version='0.9.6',
|
||||||
description='Cluster arbitrary records with field attribute keyword.',
|
description='Cluster arbitrary records with field attribute keyword.',
|
||||||
long_description=longdesc,
|
long_description=longdesc,
|
||||||
long_description_content_type="text/markdown",
|
long_description_content_type="text/markdown",
|
||||||
|
|||||||
Reference in New Issue
Block a user