diff --git a/.github/workflows/gh-ci.yaml b/.github/workflows/gh-ci.yaml index c668041..d96033b 100644 --- a/.github/workflows/gh-ci.yaml +++ b/.github/workflows/gh-ci.yaml @@ -141,7 +141,7 @@ jobs: - name: Install dependencies run: | - pip install pipx twine openbabel<3.0.0 + pip install pipx twine openbabel>=3.0.0 - name: Build package run: | diff --git a/docs/requirements.yaml b/docs/requirements.yaml index 2ef2f2d..61b2c0a 100644 --- a/docs/requirements.yaml +++ b/docs/requirements.yaml @@ -1,13 +1,22 @@ name: mda_openbabel_converter-docs channels: - - conda-forge - + - defaults dependencies: - # Base depends + # Base depends - python - pip - - mdanalysis-sphinx-theme >=1.0.1 - # Pip-only installs - #- pip: + + # MDAnalysis + - MDAnalysis + - MDAnalysisTests + + # OpenBabel + - openbabel >= 3.0.0 + + # Testing + - pytest + - pytest-cov + - pytest-xdist + - codecov diff --git a/pyproject.toml b/pyproject.toml index e457e2b..d969e70 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -18,8 +18,7 @@ maintainers = [ readme = "README.md" requires-python = ">=3.9" dependencies = [ - "MDAnalysis>=2.0.0", - "openbabel>=3.0.0" + "MDAnalysis>=2.0.0" ] keywords = [ "molecular simulations", diff --git a/readthedocs.yaml b/readthedocs.yaml index cab6477..602df96 100644 --- a/readthedocs.yaml +++ b/readthedocs.yaml @@ -7,10 +7,10 @@ build: tools: python: "mambaforge-4.10" +conda: + environment: docs/requirements.yaml + python: install: - method: pip - path: . - -conda: - environment: docs/requirements.yaml + path: . \ No newline at end of file