Skip to content

Commit

Permalink
fixed correct action order in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
dariomalchiodi committed Oct 20, 2024
1 parent 5bb4da2 commit ac0e0e9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@ jobs:
uses: actions/setup-python@v5
with:
python-version: "3.x"
- name: Perform tests
run: python3 -m unittest discover tests
- name: Install pypa/build
run: python3 -m pip install --upgrade build twine
- name: Install dependencies
run: pip install -r requirements.txt
- name: Perform tests
run: python3 -m unittest discover tests
- name: Build a binary wheel and a source tarball
run: python3 -m build
- name: Publish to PyPI
Expand Down
2 changes: 1 addition & 1 deletion mulearn/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = '1.0.4'
__version__ = '1.0.6'


import copy
Expand Down

0 comments on commit ac0e0e9

Please sign in to comment.