Skip to content

Commit

Permalink
Start building Wheels alongside sdist #221
Browse files Browse the repository at this point in the history
Pulled in remaining relevant changes from PR#221
  • Loading branch information
msusol committed Feb 15, 2023
1 parent f6af12a commit 27747de
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
4 changes: 2 additions & 2 deletions CONTRIBUTING.rst
Expand Up @@ -119,13 +119,13 @@ Ready to publish a new version to PyPi? Here's how the workflow to follow.
(pyLDAvis) $ tox

-- TestPyPi
(pyLDAvis) $ python setup.py sdist
(pyLDAvis) $ python setup.py sdist bdist_wheel
(pyLDAvis) $ twine check dist/*
(pyLDAvis) $ twine upload --repository testpypi dist/*

-- Publish
(pyLDAvis) $ twine upload --repository-url https://upload.pypi.org/legacy/ dist/*
(pyLDAvis) $ rm dist/*.tar.gz
(pyLDAvis) $ rm dist/*

Note: MacOS Big Sur is both 10.16 and 11.0 – it’s official (https://eclecticlight.co/2020/07/21/big-sur-is-both-10-16-and-11-0-its-official/) ::

Expand Down
2 changes: 0 additions & 2 deletions setup.cfg

This file was deleted.

5 changes: 4 additions & 1 deletion setup.py
Expand Up @@ -24,10 +24,11 @@
author='Ben Mabey',
author_email='ben@benmabey.com',
url='https://github.com/bmabey/pyLDAvis',
download_url = 'https://github.com/bmabey/pyLDAvis/tarball/3.4.0',
download_url='https://github.com/bmabey/pyLDAvis/tarball/3.4.0',
packages=['pyLDAvis'],
package_dir={'pyLDAvis': 'pyLDAvis'},
tests_require=['pytest'],
python_requires=">=3.8",
include_package_data=True,
install_requires=requirements,
license='BSD-3-Clause',
Expand All @@ -42,5 +43,7 @@
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
]
)

0 comments on commit 27747de

Please sign in to comment.