Skip to content

Commit

Permalink
Update setuptools wheels and twine
Browse files Browse the repository at this point in the history
  • Loading branch information
AjayP13 committed May 24, 2020
1 parent 1e408df commit ccb486e
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -151,8 +151,8 @@ Deploy to PyPI:
# Upload to PyPI
- envsubst < deployment/.pypirc > ~/.pypirc
- chmod 600 ~/.pypirc
- pip2 install setuptools -U
- pip3 install setuptools -U
- pip2 install setuptools wheel twine -U
- pip3 install setuptools wheel twine -U
- python3 setup.py sdist upload -r pypitest
- python3 setup.py sdist upload -r pypi
# Trigger Travis CI
Expand Down
18 changes: 9 additions & 9 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -619,15 +619,15 @@ def has_ext_modules(foo):
version=__version__,
description='A fast, efficient universal vector embedding utility package.',
long_description_content_type='text/markdown',
long_description="""
About
-----
A feature-packed Python package and vector storage file format for utilizing vector embeddings in machine learning models in a fast, efficient, and simple manner developed by `Plasticity <https://www.plasticity.ai/>`_. It is primarily intended to be a faster alternative to `Gensim <https://radimrehurek.com/gensim/>`_, but can be used as a generic key-vector store for domains outside NLP.
Documentation
-------------
You can see the full documentation and README at the `GitLab repository <https://gitlab.com/Plasticity/magnitude>`_ or the `GitHub repository <https://github.com/plasticityai/magnitude>`_.
""",
long_description=
"""About
-----
A feature-packed Python package and vector storage file format for utilizing vector embeddings in machine learning models in a fast, efficient, and simple manner developed by `Plasticity <https://www.plasticity.ai/>`_. It is primarily intended to be a faster alternative to `Gensim <https://radimrehurek.com/gensim/>`_, but can be used as a generic key-vector store for domains outside NLP.
Documentation
-------------
You can see the full documentation and README at the `GitLab repository <https://gitlab.com/Plasticity/magnitude>`_ or the `GitHub repository <https://github.com/plasticityai/magnitude>`_."""
,
author='Plasticity',
author_email='[email protected]',
url='https://gitlab.com/Plasticity/magnitude',
Expand Down
2 changes: 1 addition & 1 deletion version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version_info__ = ('0', '1', '126')
__version_info__ = ('0', '1', '127')
__version__ = '.'.join(__version_info__)

0 comments on commit ccb486e

Please sign in to comment.