From c60b6ab82cb8c3046cfd4782afe4d4c6071c4109 Mon Sep 17 00:00:00 2001 From: Gabi Roeger Date: Tue, 5 Dec 2023 10:48:07 +0100 Subject: [PATCH] Version 0.4.1 (#24) * start preparing version 0.4.1 * Update README.md * Build ARM64 wheels on MacOs (#23) * Update CHANGES.md --------- Co-authored-by: Florent Teichteil-Koenigsbuch --- .github/workflows/main.yml | 2 ++ CHANGES.md | 6 +++++- README.md | 5 ++--- setup.py | 2 +- 4 files changed, 10 insertions(+), 5 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 1cadc39..0987173 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -65,6 +65,8 @@ jobs: - name: Build wheel run: python -m cibuildwheel --output-dir dist + env: + CIBW_ARCHS_MACOS: "x86_64 arm64" - uses: actions/upload-artifact@v3 with: diff --git a/CHANGES.md b/CHANGES.md index 86df990..af372e7 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,9 @@ # Release notes -UP Fast Downward 0.3.3 +UP Fast Downward 0.4.1 +- Generate Python wheels compatible with Mac Apple Silicon M1/M2 +- Update README.md (current state of development and default configurations) + +UP Fast Downward 0.4.0 - fix bug in fast-downward-reachability grounder (number of parameters) - Transform task to avoid axioms for goals in Grounder and optimal solver: If the goal is not a conjunction of literals, Fast Downward introduces diff --git a/README.md b/README.md index 720ec21..3907ae7 100644 --- a/README.md +++ b/README.md @@ -86,8 +86,7 @@ Details on the reachability analysis and the normalization can be found in Malte ## Current state of the system and ongoing development - Default configuration - - ```fast-downward``` engine: lama-first (flexible configuration under development) + - ```fast-downward``` engine: lama-first for One-Shot planning, seq-sat-lama-2011 for Anytime planning - ```fast-downward-opt``` engine: A* search with LMCut heuristic - Planning approaches of UP supported: Classical planning -- Operative modes of UP currently supported: One-shot planning, Grounding -- Operative modes of UP under development: Anytime planning +- Operative modes of UP currently supported: One-shot planning, Anytime planning, Grounding diff --git a/setup.py b/setup.py index 0c4cce2..8912689 100644 --- a/setup.py +++ b/setup.py @@ -74,7 +74,7 @@ def run(self): long_description = "This package makes the [Fast Downward](https://www.fast-downward.org/) planning system available in the [unified_planning library](https://github.com/aiplan4eu/unified-planning) by the [AIPlan4EU project](https://www.aiplan4eu-project.eu/)." setup(name='up_fast_downward', - version='0.4.0', + version='0.4.1', description='Unified Planning Integration of the Fast Downward planning system', long_description=long_description, long_description_content_type="text/markdown",