diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index a1a2b34..48ab6b2 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -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 @@ -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] diff --git a/Notebooks/Unified_Planning_Basics_LPG.ipynb b/Notebooks/Unified_Planning_Basics_LPG.ipynb index 2c84e9d..f7a90c4 100644 --- a/Notebooks/Unified_Planning_Basics_LPG.ipynb +++ b/Notebooks/Unified_Planning_Basics_LPG.ipynb @@ -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", @@ -819,4 +819,4 @@ }, "nbformat": 4, "nbformat_minor": 0 -} \ No newline at end of file +} diff --git a/setup.py b/setup.py index b6fc471..e28487c 100644 --- a/setup.py +++ b/setup.py @@ -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", diff --git a/up_lpg/lpg b/up_lpg/lpg index 78db4e3..949b87e 100755 Binary files a/up_lpg/lpg and b/up_lpg/lpg differ