diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 84aaafa..684bfef 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -21,11 +21,11 @@ repos: - id: nbstripout - repo: https://github.com/pre-commit/mirrors-prettier - rev: v3.0.0-alpha.9-for-vscode + rev: v3.0.3 hooks: - id: prettier additional_dependencies: - - prettier@2.3.2 + - prettier@3.0.3 - "prettier-plugin-toml" - repo: https://github.com/python-jsonschema/check-jsonschema diff --git a/CHANGELOG.md b/CHANGELOG.md index c8fa3ff..ad98eaf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,13 @@ All notable changes to Rp-Bp will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/), and this project adheres to [Semantic Versioning](http://semver.org/). -## [Unreleased] - started 2023-02 +## [Unreleased] - started 2023-09 + +## [3.0.3] 2023-09-13 + +### Changed + +- Requires pbiotools >= 4.0.2 ## [3.0.2] 2023-05-19 diff --git a/environment.yml b/environment.yml index 9e71b6b..1b683f5 100644 --- a/environment.yml +++ b/environment.yml @@ -16,7 +16,7 @@ dependencies: - joblib - numpy - pandas - - pbiotools>=4.0.1 + - pbiotools>=4.0.2 - pyyaml - samtools - scipy diff --git a/pyproject.toml b/pyproject.toml index 4b24966..2591ad5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -34,7 +34,7 @@ classifiers = [ dynamic = ["version"] requires-python = ">=3.7,<3.11" dependencies = [ - "pbiotools>=4.0.1", + "pbiotools>=4.0.2", "appdirs", "biopython", "cmdstanpy", diff --git a/src/rpbp/__init__.py b/src/rpbp/__init__.py index e6f8e06..3b16fbb 100644 --- a/src/rpbp/__init__.py +++ b/src/rpbp/__init__.py @@ -1,2 +1,2 @@ -__version_info__ = ("3", "0", "2") +__version_info__ = ("3", "0", "3") __version__ = ".".join(__version_info__)