From 3cfa3613b69a685a5f57c7f3a83a384cc28e0246 Mon Sep 17 00:00:00 2001 From: Anton Tetov Date: Mon, 15 Apr 2024 16:01:24 +0200 Subject: [PATCH] fix build, ci --- .github/dependabot.yml | 4 ---- .github/workflows/test-publish-release.yml | 2 +- {compas_mrr => src/compas_mrr}/__init__.py | 0 {compas_mrr => src/compas_mrr}/__main__.py | 0 {compas_mrr => src/compas_mrr}/arbitrary_pts_localization.py | 0 {compas_mrr => src/compas_mrr}/measurement_point.py | 0 {compas_mrr => src/compas_mrr}/py.typed | 0 {compas_mrr => src/compas_mrr}/three_pts_localization.py | 0 {compas_mrr => src/compas_mrr}/utils.py | 0 {compas_mrr => src/compas_mrr}/xforms.py | 0 10 files changed, 1 insertion(+), 5 deletions(-) rename {compas_mrr => src/compas_mrr}/__init__.py (100%) rename {compas_mrr => src/compas_mrr}/__main__.py (100%) rename {compas_mrr => src/compas_mrr}/arbitrary_pts_localization.py (100%) rename {compas_mrr => src/compas_mrr}/measurement_point.py (100%) rename {compas_mrr => src/compas_mrr}/py.typed (100%) rename {compas_mrr => src/compas_mrr}/three_pts_localization.py (100%) rename {compas_mrr => src/compas_mrr}/utils.py (100%) rename {compas_mrr => src/compas_mrr}/xforms.py (100%) 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