Skip to content

Commit 5f448a1

Browse files
authored
Merge pull request #56 from APLA-Toolbox/package-pypi
[Critical Fix] Broken package
2 parents 783a3c3 + c6ed49d commit 5f448a1

File tree

6 files changed

+9
-11
lines changed

6 files changed

+9
-11
lines changed

.github/workflows/tests.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,13 +44,11 @@ jobs:
4444
runs-on: ${{ matrix.os }}
4545
strategy:
4646
matrix:
47-
os: [ubuntu-latest, macos-latest, windows-latest]
48-
python-version: [3.6, 3.7, 3.8, pypy-3.6]
47+
os: [ubuntu-latest, macos-latest]
48+
python-version: [3.6, 3.7, 3.8]
4949
exclude:
5050
- os: macos-latest
5151
python-version: 3.8
52-
- os: windows-latest
53-
python-version: 3.6
5452
steps:
5553
- uses: actions/checkout@v2
5654
- name: Set up Python 3.7

main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from src.automated_planner import AutomatedPlanner
1+
from jupyddl.automated_planner import AutomatedPlanner
22
import argparse
33
import os
44

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
setuptools.setup(
1111
name="jupyddl", # Replace with your own username
12-
version="0.2.4",
12+
version="0.2.5",
1313
author="Erwin Lejeune",
1414
author_email="erwinlejeune.pro@gmail.com",
1515
description="Jupyddl is a PDDL planner built on top of a Julia parser",

tests/test_astar.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
from os import path
55

66
sys.path.append(path.dirname(path.dirname(path.abspath(__file__))))
7-
from src.automated_planner import AutomatedPlanner
8-
from src.a_star import AStarBestFirstSearch
7+
from jupyddl.automated_planner import AutomatedPlanner
8+
from jupyddl.a_star import AStarBestFirstSearch
99

1010

1111
def test_astar_init():

tests/test_automated_planner.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
from os import path
55

66
sys.path.append(path.dirname(path.dirname(path.abspath(__file__))))
7-
from src.automated_planner import AutomatedPlanner
7+
from jupyddl.automated_planner import AutomatedPlanner
88

99

1010
def test_parsing():

tests/test_heuristics.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
from os import path
55

66
sys.path.append(path.dirname(path.dirname(path.abspath(__file__))))
7-
from src.automated_planner import AutomatedPlanner
8-
import src.heuristics as hs
7+
from jupyddl.automated_planner import AutomatedPlanner
8+
import jupyddl.heuristics as hs
99

1010
"""
1111
Testing the heuristics in different situations

0 commit comments

Comments
 (0)