Skip to content

Commit

Permalink
Change import tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ascillitoe committed Nov 18, 2022
1 parent 46a8725 commit b3aa94e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,4 +46,5 @@ jobs:
run: |
make clean
python -m pip install alibi-detect==${{ env.PACKAGE_VERS }}
python -c "from alibi_detect.cd import KSDrift"
python -c "import alibi_detect; print(alibi_detect)"
python -c "from alibi_detect.cd import *; print(MMDDrift)"
3 changes: 2 additions & 1 deletion .github/workflows/publish_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,4 +47,5 @@ jobs:
run: |
make clean
python -m pip install --index-url https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple alibi-detect==${{ env.PACKAGE_VERS }}
python -c "from alibi_detect.cd import KSDrift"
python -c "import alibi_detect; print(alibi_detect)"
python -c "from alibi_detect.cd import *; print(MMDDrift)"
2 changes: 1 addition & 1 deletion alibi_detect/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
# 2) we can import it in setup.py for the same reason
# 3) we can import it into your module module

__version__ = "0.10.5-alpha5"
__version__ = "0.10.5-alpha6"

0 comments on commit b3aa94e

Please sign in to comment.