kopia lustrzana https://github.com/crflynn/voting
rodzic
35e86a1dc1
commit
d572232084
|
|
@ -1,6 +1,13 @@
|
||||||
Release History
|
Release History
|
||||||
---------------
|
---------------
|
||||||
|
|
||||||
|
0.1.3 (2019-10-13)
|
||||||
|
~~~~~~~~~~~~~~~~~~
|
||||||
|
|
||||||
|
* Fix for Adams method
|
||||||
|
* Fix for Webster method
|
||||||
|
* Fix _version.py for conflicts
|
||||||
|
|
||||||
0.1.2 (2019-07-11)
|
0.1.2 (2019-07-11)
|
||||||
~~~~~~~~~~~~~~~~~~
|
~~~~~~~~~~~~~~~~~~
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -26,7 +26,7 @@ methods.
|
||||||
Installation
|
Installation
|
||||||
------------
|
------------
|
||||||
|
|
||||||
The ``voting`` package works in Python 2.7, 3.4, 3.5, 3.6. It is available on
|
The ``voting`` package works in Python 2.7, 3.5, 3.6 and 3.7. It is available on
|
||||||
pypi and can be installed using pip.
|
pypi and can be installed using pip.
|
||||||
|
|
||||||
.. code-block:: shell
|
.. code-block:: shell
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,7 @@
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
set -e
|
||||||
|
export VERSION=$(poetry run python -c "import voting; print(voting.__version__)")
|
||||||
|
poetry build
|
||||||
|
poetry run twine upload dist/voting-${VERSION}*
|
||||||
|
git tag -a ${VERSION} -m "${VERSION}"
|
||||||
|
git push --tags
|
||||||
|
|
@ -22,7 +22,7 @@ exclude = '''
|
||||||
|
|
||||||
[tool.poetry]
|
[tool.poetry]
|
||||||
name = "voting"
|
name = "voting"
|
||||||
version = "0.1.2"
|
version = "0.1.3"
|
||||||
description = "Voting and election related functions."
|
description = "Voting and election related functions."
|
||||||
authors = ["Christopher Flynn <crf204@gmail.com>"]
|
authors = ["Christopher Flynn <crf204@gmail.com>"]
|
||||||
readme = "README.rst"
|
readme = "README.rst"
|
||||||
|
|
|
||||||
|
|
@ -1,13 +1,13 @@
|
||||||
"""Module level accessible objects."""
|
"""Module level accessible objects."""
|
||||||
from voting.__version__ import __version__
|
from voting._version import __version__
|
||||||
from voting.__version__ import __description__
|
from voting._version import __description__
|
||||||
from voting.__version__ import __url__
|
from voting._version import __url__
|
||||||
from voting.__version__ import __title__
|
from voting._version import __title__
|
||||||
from voting.__version__ import __author__
|
from voting._version import __author__
|
||||||
from voting.__version__ import __author_email__
|
from voting._version import __author_email__
|
||||||
from voting.__version__ import __license__
|
from voting._version import __license__
|
||||||
from voting.__version__ import __copyright__
|
from voting._version import __copyright__
|
||||||
from voting.__version__ import __docs_copyright__
|
from voting._version import __docs_copyright__
|
||||||
|
|
||||||
__all__ = (
|
__all__ = (
|
||||||
__version__,
|
__version__,
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
__title__ = "voting"
|
__title__ = "voting"
|
||||||
__description__ = "Voting and election related functions."
|
__description__ = "Voting and election related functions."
|
||||||
__url__ = "https://github.com/crflynn/voting"
|
__url__ = "https://github.com/crflynn/voting"
|
||||||
__version__ = "0.1.2"
|
__version__ = "0.1.3"
|
||||||
__author__ = "Christopher Flynn"
|
__author__ = "Christopher Flynn"
|
||||||
__author_email__ = "crf204@gmail.com"
|
__author_email__ = "crf204@gmail.com"
|
||||||
__license__ = "MIT"
|
__license__ = "MIT"
|
||||||
Ładowanie…
Reference in New Issue