From 8487a51f8c9f7df4e66d3c0e64fb551d5253e695 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marek=20Wiewi=C3=B3rka?= Date: Tue, 17 Dec 2024 19:07:01 +0100 Subject: [PATCH] fix: poetry (#28) --- .readthedocs.yaml | 20 ++++++++++---------- Cargo.toml | 2 +- pyproject.toml | 2 +- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.readthedocs.yaml b/.readthedocs.yaml index 99f0f89..6306937 100644 --- a/.readthedocs.yaml +++ b/.readthedocs.yaml @@ -4,16 +4,16 @@ os: ubuntu-24.04 tools: python: "3.12" - jobs: - post_create_environment: - # Install poetry - # https://python-poetry.org/docs/#installing-manually - - python -m pip install poetry - post_install: - # Install dependencies with 'docs' dependency group - # https://python-poetry.org/docs/managing-dependencies/#dependency-groups - - VIRTUAL_ENV=$READTHEDOCS_VIRTUALENV_PATH poetry lock --no-update - - VIRTUAL_ENV=$READTHEDOCS_VIRTUALENV_PATH poetry install +# jobs: +# post_create_environment: +# # Install poetry +# # https://python-poetry.org/docs/#installing-manually +# - python -m pip install poetry +# post_install: +# # Install dependencies with 'docs' dependency group +# # https://python-poetry.org/docs/managing-dependencies/#dependency-groups +# - VIRTUAL_ENV=$READTHEDOCS_VIRTUALENV_PATH poetry lock --no-update +# - VIRTUAL_ENV=$READTHEDOCS_VIRTUALENV_PATH poetry install python: install: - requirements: docs/requirements.txt diff --git a/Cargo.toml b/Cargo.toml index d11737a..40d1ba4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "polars_bio" -version = "0.2.7" +version = "0.2.8" edition = "2021" [lib] diff --git a/pyproject.toml b/pyproject.toml index 212ab6b..cf09676 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "maturin" [project] name = "polars-bio" -version = "0.2.7" +version = "0.2.8" description = "Blazing fast genomic operations on large Python dataframes" authors = [] requires-python = ">=3.9"