From 541482bf8248c42eaf0375e4d078aefdcfae2674 Mon Sep 17 00:00:00 2001 From: David Hadka Date: Wed, 4 Sep 2024 22:11:48 +0000 Subject: [PATCH] Rename optional dependency --- .github/workflows/test-and-publish.yml | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test-and-publish.yml b/.github/workflows/test-and-publish.yml index accb9e6..c6a7c7c 100644 --- a/.github/workflows/test-and-publish.yml +++ b/.github/workflows/test-and-publish.yml @@ -26,7 +26,7 @@ jobs: - name: Install dependencies run: | - pip install .[test] + pip install .[test,openmdao] - name: Run tests run: | diff --git a/pyproject.toml b/pyproject.toml index 9286ce3..e01b3b6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -29,7 +29,7 @@ dynamic = ["version"] # Version is read from rhodium/__init__.py [project.optional-dependencies] test = ["pytest", "mock", "pyper"] -optional = ["openmdao"] +openmdao = ["openmdao"] [tool.setuptools.dynamic] version = {attr = "rhodium.__version__"}