diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml deleted file mode 100644 index 5608592..0000000 --- a/.github/workflows/test.yaml +++ /dev/null @@ -1,7 +0,0 @@ -name: CI -on: [workflow_dispatch, pull_request, push] - -jobs: - test: - runs-on: ubuntu-latest - steps: [uses: fastai/workflows/nbdev-ci@master] diff --git a/.github/workflows/test_installation.yaml b/.github/workflows/test_installation.yaml index 77cdb93..3c92499 100644 --- a/.github/workflows/test_installation.yaml +++ b/.github/workflows/test_installation.yaml @@ -14,7 +14,7 @@ jobs: fail-fast: false matrix: os: ["ubuntu-latest", "macos-latest", "windows-latest"] - python-version: ["3.9", "3.10"] + python-version: ["3.9", "3.10","3.11","3.12","3.13"] timeout-minutes: 20 diff --git a/MIOFlow/__init__.py b/mioflow/__init__.py similarity index 100% rename from MIOFlow/__init__.py rename to mioflow/__init__.py diff --git a/MIOFlow/core/__init__.py b/mioflow/core/__init__.py similarity index 100% rename from MIOFlow/core/__init__.py rename to mioflow/core/__init__.py diff --git a/MIOFlow/core/datasets.py b/mioflow/core/datasets.py similarity index 100% rename from MIOFlow/core/datasets.py rename to mioflow/core/datasets.py diff --git a/MIOFlow/core/losses.py b/mioflow/core/losses.py similarity index 100% rename from MIOFlow/core/losses.py rename to mioflow/core/losses.py diff --git a/MIOFlow/core/models/__init__.py b/mioflow/core/models/__init__.py similarity index 100% rename from MIOFlow/core/models/__init__.py rename to mioflow/core/models/__init__.py diff --git a/MIOFlow/core/models/ode_model.py b/mioflow/core/models/ode_model.py similarity index 100% rename from MIOFlow/core/models/ode_model.py rename to mioflow/core/models/ode_model.py diff --git a/MIOFlow/core/models/sde_model.py b/mioflow/core/models/sde_model.py similarity index 100% rename from MIOFlow/core/models/sde_model.py rename to mioflow/core/models/sde_model.py diff --git a/MIOFlow/gaga.py b/mioflow/gaga.py similarity index 100% rename from MIOFlow/gaga.py rename to mioflow/gaga.py diff --git a/MIOFlow/growth_rate.py b/mioflow/growth_rate.py similarity index 100% rename from MIOFlow/growth_rate.py rename to mioflow/growth_rate.py diff --git a/MIOFlow/mioflow.py b/mioflow/mioflow.py similarity index 100% rename from MIOFlow/mioflow.py rename to mioflow/mioflow.py diff --git a/pyproject.toml b/pyproject.toml index b7ef382..2684bae 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "mioflow" -version = "0.1.11" +version = "0.1.12" description = "MIOFlow is a Python package for modeling and analyzing single-cell RNA-seq data using optimal flows." readme = "README.md" requires-python = ">=3.8"