From cbcf614885489ed08e9c16b57dfaf2a4592c739f Mon Sep 17 00:00:00 2001 From: Ury Date: Wed, 24 Jan 2024 13:07:05 -0800 Subject: [PATCH] string inputs for python versions, remove explicit package list in pyproject.toml --- .github/workflows/pytest.yaml | 2 +- pyproject.toml | 12 ------------ 2 files changed, 1 insertion(+), 13 deletions(-) diff --git a/.github/workflows/pytest.yaml b/.github/workflows/pytest.yaml index 7a04daf..907ae22 100644 --- a/.github/workflows/pytest.yaml +++ b/.github/workflows/pytest.yaml @@ -11,7 +11,7 @@ jobs: fail-fast: false max-parallel: 100 matrix: - python-version: [3.8, 3.9, 3.10, 3.11, 3.12] + python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] pycalphad_develop_version: [true, false] steps: diff --git a/pyproject.toml b/pyproject.toml index b59b531..7b4326f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -20,15 +20,3 @@ source = [ source_pkgs = [ "kawin" ] - -[tool.setuptools] -packages = [ - "kawin", - "kawin.tests", - "kawin.diffusion", - "kawin.precipitation", - "kawin.precipitation.coupling", - "kawin.precipitation.non_ideal", - "kawin.solver", - "kawin.thermo" -]