diff --git a/.github/dependabot.yml b/.github/dependabot.yml index d48adbf..2c7d170 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -5,7 +5,3 @@ updates: directory: "/" schedule: interval: "daily" - - package-ecosystem: "pip" - directory: "/" - schedule: - interval: "daily" diff --git a/.github/workflows/test-publish-release.yml b/.github/workflows/test-publish-release.yml index 98bc522..ac70d58 100644 --- a/.github/workflows/test-publish-release.yml +++ b/.github/workflows/test-publish-release.yml @@ -17,7 +17,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, windows-latest, macos-latest] - python-version: [3.7, 3.8, 3.9, 3.10] + python-version: ['3.7', '3.8', '3.9', '3.10'] steps: - name: Checkout repo diff --git a/compas_mrr/__init__.py b/src/compas_mrr/__init__.py similarity index 100% rename from compas_mrr/__init__.py rename to src/compas_mrr/__init__.py diff --git a/compas_mrr/__main__.py b/src/compas_mrr/__main__.py similarity index 100% rename from compas_mrr/__main__.py rename to src/compas_mrr/__main__.py diff --git a/compas_mrr/arbitrary_pts_localization.py b/src/compas_mrr/arbitrary_pts_localization.py similarity index 100% rename from compas_mrr/arbitrary_pts_localization.py rename to src/compas_mrr/arbitrary_pts_localization.py diff --git a/compas_mrr/measurement_point.py b/src/compas_mrr/measurement_point.py similarity index 100% rename from compas_mrr/measurement_point.py rename to src/compas_mrr/measurement_point.py diff --git a/compas_mrr/py.typed b/src/compas_mrr/py.typed similarity index 100% rename from compas_mrr/py.typed rename to src/compas_mrr/py.typed diff --git a/compas_mrr/three_pts_localization.py b/src/compas_mrr/three_pts_localization.py similarity index 100% rename from compas_mrr/three_pts_localization.py rename to src/compas_mrr/three_pts_localization.py diff --git a/compas_mrr/utils.py b/src/compas_mrr/utils.py similarity index 100% rename from compas_mrr/utils.py rename to src/compas_mrr/utils.py diff --git a/compas_mrr/xforms.py b/src/compas_mrr/xforms.py similarity index 100% rename from compas_mrr/xforms.py rename to src/compas_mrr/xforms.py