Skip to content

Commit

Permalink
Disable binary distribution (#49)
Browse files Browse the repository at this point in the history
  • Loading branch information
rflprr authored Jun 2, 2017
1 parent 10fa20a commit 97b3ad2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,6 @@ jobs:
name: Release to pypi
command: |
if [[ "${CIRCLE_BRANCH}" =~ ^(${RELEASE_BRANCH})$ ]]; then
python setup.py sdist bdist_wheel
python setup.py sdist --formats=gztar
twine upload -u $PYPI_USERNAME -p $PYPI_PASSWORD dist/*
fi
2 changes: 1 addition & 1 deletion datadotworld/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
from datadotworld.config import FileConfig, ChainedConfig
from datadotworld.datadotworld import DataDotWorld

__version__ = '1.2.3'
__version__ = '1.2.4'

# Convenience top-level functions

Expand Down
5 changes: 1 addition & 4 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,11 +1,8 @@
[aliases]
test=pytest

[bdist_wheel]
universal=1

[metadata]
provides-extra =
pandas
requires-dist =
pandas<1.0a; extra == 'pandas'
pandas<1.0a; extra == 'pandas'

0 comments on commit 97b3ad2

Please sign in to comment.