Skip to content

Commit

Permalink
new deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
IvanSerina authored and stoppini committed Oct 25, 2024
1 parent 8ed62da commit b33afaf
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 11 deletions.
13 changes: 5 additions & 8 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,10 @@ jobs:
steps:
- uses: actions/checkout@v3

- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: "3.10"
- uses: actions/setup-python@v3

- name: Install cibuildwheel
run: python -m pip install cibuildwheel==2.12.1
run: python -m pip install cibuildwheel==2.11.2

- name: Build wheels
run: python -m cibuildwheel --output-dir dist
Expand All @@ -36,16 +33,16 @@ jobs:
- name: Checkout
uses: actions/checkout@master

- name: Build manylinux Python wheels
- name: Build manylinux Python wheels
uses: RalfG/python-wheels-manylinux-build@v0.4.2-manylinux2014_x86_64
with:
python-versions: 'cp37-cp37m cp38-cp38 cp39-cp39 cp310-cp310'
python-versions: 'cp37-cp37m cp38-cp38 cp39-cp39 cp310-cp310 cp311-cp311 cp312-cp312'

- uses: actions/upload-artifact@master
with:
name: linux-wheel
path: dist/*-manylinux*.whl

deploy-pypi:
runs-on: ubuntu-latest
needs: [build-linux, build-win]
Expand Down
4 changes: 2 additions & 2 deletions Notebooks/Unified_Planning_Basics_LPG.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -426,7 +426,7 @@
" * Developers: UNIBS Team\n",
"\u001b[0m\u001b[96m * Description: \u001b[0m\u001b[96mLPG is a planner based on local search and planning graphs.\u001b[0m\u001b[96m\n",
"\u001b[0m\u001b[96m\n",
"\u001b[0mPyperplan returned: SequentialPlan:\n",
"\u001b[0mLPG returned: SequentialPlan:\n",
" move(l0, l1)\n",
" move(l1, l2)\n",
" move(l2, l3)\n",
Expand Down Expand Up @@ -819,4 +819,4 @@
},
"nbformat": 4,
"nbformat_minor": 0
}
}
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def is_pure(self):
return False

setup(name='up_lpg',
version='0.0.14',
version='0.1',
description='up_lpg',
long_description=long_description,
long_description_content_type ="text/markdown",
Expand Down
Binary file modified up_lpg/lpg
Binary file not shown.

0 comments on commit b33afaf

Please sign in to comment.