diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml index d88fc79b..679184b9 100644 --- a/.github/workflows/deploy.yaml +++ b/.github/workflows/deploy.yaml @@ -34,10 +34,11 @@ jobs: - name: Build distribution packages run: |- - rm -Rf build; python setup.py '' sdist bdist_wheel - rm -Rf build; python setup.py 'core' sdist bdist_wheel - rm -Rf build; python setup.py 'api' sdist bdist_wheel - rm -Rf build; python setup.py 'io' sdist bdist_wheel + rm -Rf build; python setup.py '' sdist bdist_wheel + rm -Rf build; python setup.py 'core' sdist bdist_wheel + rm -Rf build; python setup.py 'api' sdist bdist_wheel + rm -Rf build; python setup.py 'io' sdist bdist_wheel + rm -Rf build; python setup.py 'test' sdist bdist_wheel - name: "Archive installation artifacts" uses: actions/upload-artifact@v3 diff --git a/setup.py b/setup.py index a172b039..808d093d 100755 --- a/setup.py +++ b/setup.py @@ -56,7 +56,7 @@ def main() -> None: Wrap setuptools with dynamically generated packages and information. """ - version = "0.0.2" + version = "0.0.3" config: Dict[str, Union[str, List[str]]] = { "version": version, "author": "Mewbot Developers (https://github.com/mewbotorg)",