From d65cd98a44c6e2dd457b18c2e704b826966c55bc Mon Sep 17 00:00:00 2001 From: bruno-f-cruz <7049351+bruno-f-cruz@users.noreply.github.com> Date: Sun, 17 Nov 2024 09:00:54 -0800 Subject: [PATCH] Add uv to readme --- README.md | 10 ++++++++++ src/aind_behavior_services/__init__.py | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 4932055c..eb62ebbc 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,11 @@ # aind-behavior-services +![CI](https://github.com/AllenNeuralDynamics/Aind.Behavior.Services/actions/workflows/ci.yml/badge.svg) +[![PyPI - Version](https://img.shields.io/pypi/v/aind-behavior-experiment-launcher)](https://pypi.org/project/aind-behavior-experiment-launcher/) +[![License](https://img.shields.io/badge/license-MIT-brightgreen)](LICENSE) +[![ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json)](https://github.com/astral-sh/ruff) +[![uv](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/uv/main/assets/badge/v0.json)](https://github.com/astral-sh/uv) + A repository containing code for data acquisition and processing for AIND behavior rigs. --- @@ -60,6 +66,10 @@ We use [ruff](https://docs.astral.sh/ruff/) as our primary linting tool. Attempt to add tests when new features are added. To run the currently available tests, run `python -m unittest` from the root of the repository. +### Lock files + +We use [uv](https://docs.astral.sh/uv/) to manage our lock files. + ### Versioning Where possible, adhere to [Semantic Versioning](https://semver.org/). diff --git a/src/aind_behavior_services/__init__.py b/src/aind_behavior_services/__init__.py index 5463ae10..f920be2d 100644 --- a/src/aind_behavior_services/__init__.py +++ b/src/aind_behavior_services/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.8.8" +__version__ = "0.8.8-rc1" from .rig import AindBehaviorRigModel # noqa: F401 from .session import AindBehaviorSessionModel # noqa: F401