Skip to content

Commit

Permalink
travis depoloy fix
Browse files Browse the repository at this point in the history
  • Loading branch information
nikolasibalic committed May 3, 2018
1 parent 282bd65 commit 66c0356
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
7 changes: 6 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,13 @@ script:
- |
if [[ $TRAVIS_TAG ]]; then
conda install --yes twine;
python setup.py sdist bdist_wheel;
if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
python setup.py sdist bdist_wheel;
python -m twine upload --repository-url https://upload.pypi.org/legacy/ dist/*.whl;
else
if [[ "$TOXENV" == "py3" ]]; then
python setup.py sdist
python -m twine upload --repository-url https://upload.pypi.org/legacy/ dist/*.tar.gz;
fi;
fi;
fi
4 changes: 2 additions & 2 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,9 +89,9 @@ def __getattr__(cls, name):
# built documents.
#
# The short X.Y version.
version = u'1.4'
version = u'1.4.1'
# The full version, including alpha/beta/rc tags.
release = u'1.4'
release = u'1.4.1'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,22 +21,21 @@

setup(
name="ARC-Alkali-Rydberg-Calculator",
version="1.4",
version="1.4.1",
description="Alkali Rydberg Calculator",
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
license="BSD3",
keywords=["rydberg", "physics", "stark maps", "atom interactions", "quantum optics", "van der Waals", "scientific"],
url="https://github.com/nikolasibalic/ARC-Alkali-Rydberg-Calculator",
download_url="https://github.com/nikolasibalic/ARC-Alkali-Rydberg-Calculator/archive/1.4.tar.gz",
download_url="https://github.com/nikolasibalic/ARC-Alkali-Rydberg-Calculator/archive/1.4.1.tar.gz",
author = 'Nikola Sibalic, Jonathan D. Pritchard, Charles S. Adams, Kevin J. Weatherill',
author_email = '[email protected]',

packages=['arc'],

package_data={'arc': ['data/*', 'arc_c_extensions.c']},

include_package_data=True,
zip_safe=False,
ext_modules=[arc_ext],

Expand Down

0 comments on commit 66c0356

Please sign in to comment.