Skip to content

Commit e15fe9d

Browse files
ci: version bump [skip actions]
1 parent 40ecc59 commit e15fe9d

File tree

8 files changed

+12
-143
lines changed

8 files changed

+12
-143
lines changed

CITATION.cff

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ cff-version: 1.2.0
22
message: "If you use this software, please cite it as below."
33
authors:
44
- given-names: "Allen Institute for Neural Dynamics"
5-
title: "aind-library-template"
6-
version: "v0.4.7"
7-
date-released: 2025-06-29
8-
url: "https://github.com/AllenNeuralDynamics/aind-library-template"
5+
title: "probe-library"
6+
version: "v0.0.0"
7+
date-release: 2025-08-30
8+
url: "https://github.com/AllenNeuralDynamics/probe-library"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# aind-library-template
1+
# probe-library
22

33
[![License](https://img.shields.io/badge/license-MIT-brightgreen)](LICENSE)
44
![Code Style](https://img.shields.io/badge/code%20style-black-black)

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
from os.path import abspath, dirname
1111
from pathlib import Path
1212

13-
from aind_library_template import __version__ as package_version
13+
from probe_library import __version__ as package_version
1414

1515
INSTITUTE_NAME = "Allen Institute for Neural Dynamics"
1616

pyproject.toml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ requires = ["setuptools"]
33
build-backend = "setuptools.build_meta"
44

55
[project]
6-
name = "aind-library-template"
7-
description = "Prints messages to stdout. Simple boilerplate for libraries."
6+
name = "probe-library"
7+
description = "Generated from aind-library-template"
88
license = {text = "MIT"}
99
requires-python = ">=3.10"
1010
authors = [
@@ -17,7 +17,6 @@ readme = "README.md"
1717
dynamic = ["version"]
1818

1919
dependencies = [
20-
'pandas'
2120
]
2221

2322
[dependency-groups]
@@ -35,7 +34,7 @@ dev = [
3534
where = ["src"]
3635

3736
[tool.setuptools.dynamic]
38-
version = {attr = "aind_library_template.__version__"}
37+
version = {attr = "probe_library.__version__"}
3938

4039
[tool.black]
4140
line-length = 79
@@ -61,7 +60,7 @@ exclude = '''
6160

6261
[tool.coverage.run]
6362
omit = ["*__init__*"]
64-
source = ["aind_library_template", "tests"]
63+
source = ["probe_library", "tests"]
6564

6665
[tool.coverage.report]
6766
exclude_lines = [

src/aind_library_template/__init__.py

Lines changed: 0 additions & 3 deletions
This file was deleted.

src/aind_library_template/message_handlers.py

Lines changed: 0 additions & 67 deletions
This file was deleted.

src/probe_library/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
"""Init package"""
2+
__version__ = "0.0.0"

tests/test_message_handler.py

Lines changed: 0 additions & 62 deletions
This file was deleted.

0 commit comments

Comments
 (0)