Skip to content

Commit

Permalink
tests: mewbot-test is not being deployed to pypi (#257)
Browse files Browse the repository at this point in the history
 - this seems to be because it's not included in deploy.yaml
 - adding a line to include it
 - adding a version bump to get round pypi limitations
  • Loading branch information
javajawa authored Oct 14, 2023
2 parents 0fae02a + 3f8c558 commit c9dd672
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)",
Expand Down

0 comments on commit c9dd672

Please sign in to comment.