diff --git a/.github/workflows/pypi-release.yml b/.github/workflows/pypi-release.yml index 898c2ba8..f056f107 100644 --- a/.github/workflows/pypi-release.yml +++ b/.github/workflows/pypi-release.yml @@ -7,6 +7,9 @@ on: push: branches: - master + release: + types: + - created # based on https://github.com/pypa/gh-action-pypi-publish diff --git a/MANIFEST.in b/MANIFEST.in index 9f80983d..53029704 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -41,3 +41,4 @@ prune .circleci prune notebook* prune temp* prune test* +prune benchmark* diff --git a/docs/source/_images/general/pl_overview.gif b/docs/source/_images/general/pl_overview.gif index b2c37444..1aa64199 100644 Binary files a/docs/source/_images/general/pl_overview.gif and b/docs/source/_images/general/pl_overview.gif differ diff --git a/setup.py b/setup.py index 1195ada9..6236baf9 100755 --- a/setup.py +++ b/setup.py @@ -46,7 +46,7 @@ setup( url=pytorch_lightning.__homepage__, download_url='https://github.com/PyTorchLightning/pytorch-lightning', license=pytorch_lightning.__license__, - packages=find_packages(exclude=['tests']), + packages=find_packages(exclude=['tests', 'tests/*', 'benchmarks']), long_description=open('README.md', encoding='utf-8').read(), long_description_content_type='text/markdown',