diff --git a/.circleci/config.yml b/.circleci/config.yml index 0e2f721..532604d 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -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 diff --git a/datadotworld/__init__.py b/datadotworld/__init__.py index 3a3e6f4..9d5b25a 100644 --- a/datadotworld/__init__.py +++ b/datadotworld/__init__.py @@ -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 diff --git a/setup.cfg b/setup.cfg index 0c0df22..cf97981 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,11 +1,8 @@ [aliases] test=pytest -[bdist_wheel] -universal=1 - [metadata] provides-extra = pandas requires-dist = - pandas<1.0a; extra == 'pandas' \ No newline at end of file + pandas<1.0a; extra == 'pandas'