From 15f600a7331bf18818c71edcab7fcd9cc74747c5 Mon Sep 17 00:00:00 2001 From: Guillem Frances Date: Thu, 7 Apr 2022 20:39:33 +0200 Subject: [PATCH 1/2] Testing a possible fix for pyrddl dependency --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 7844a643..6db7f62b 100644 --- a/setup.py +++ b/setup.py @@ -87,7 +87,7 @@ def main(): 'numpy' ], 'rddl': [ - "pyrddl @ https://github.com/thiagopbueno/pyrddl/archive/9ccab6a.zip#sha1=a584f90381bf7d48b85976807b9bc6c0cb2761ba" + "pyrddl" ], 'parsegen': [ 'ply==3.11' From aaaac7c46e3fa8a6ac1b9977df9b6d9c87f8f65f Mon Sep 17 00:00:00 2001 From: Guillem Frances Date: Thu, 7 Apr 2022 21:05:47 +0200 Subject: [PATCH 2/2] Fixed pypi publishing workflow --- CHANGELOG.md | 2 +- src/tarski/version.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5a54a324..10cd9cc9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,7 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Deprecated ### Fixed -## [0.8.1] 2022-04-07 +## [0.8.2] 2022-04-07 ### Fixed - Fixed pypi publishing workflow. diff --git a/src/tarski/version.py b/src/tarski/version.py index 5b44aea7..cdf1cae2 100644 --- a/src/tarski/version.py +++ b/src/tarski/version.py @@ -1,3 +1,3 @@ -__version_info__ = (0, 8, 1) +__version_info__ = (0, 8, 2) __version__ = '.'.join(map(str, __version_info__))