Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/black.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ jobs:
- uses: psf/black@stable
with:
options: "--check --verbose"
version: "24.1.1"
version: "24.1.1"
2 changes: 1 addition & 1 deletion .github/workflows/isort.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: 3.9
python-version: 3.12
- name: Install apt dependencies
# Install `libopenmpi` for mpi4py
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
py: ["3.9", "3.10", "3.11"]
py: [ "3.10"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.py }}
Expand All @@ -35,4 +35,4 @@ jobs:
run: |
coverage run --parallel-mode -m unittest
mpiexec -n 2 coverage run --parallel-mode -m unittest
bash <(curl -s https://codecov.io/bash)
bash <(curl -s https://codecov.io/bash)
2 changes: 1 addition & 1 deletion dbbs_models/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
cortex. Maintained by the Department of Brain and Behavioral Sciences of Pavia.
"""

__version__ = "4.0.0"
__version__ = "6.0.0"

from .basket_cell_models import BasketCellModel
from .golgi_cell_models import GolgiCellModel
Expand Down
10 changes: 5 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ license = {file = "LICENSE"}
classifiers = ["License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)"]
dynamic = ["version", "description"]
dependencies = [
"arborize[neuron]~=4.0",
"dbbs-catalogue~=4.0",
"arborize[neuron]~=6.0",
"dbbs-catalogue~=6.0",
]

[project.optional-dependencies]
test = ["coverage~=7.0"]
test = ["coverage~=7.3"]

[project.urls]
Home = "https://github.com/dbbs-lab/models"
Expand All @@ -24,7 +24,7 @@ Home = "https://github.com/dbbs-lab/models"
name = "dbbs_models"

[tool.bumpversion]
current_version = "4.0.0"
current_version = "6.0.0"
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"
serialize = ["{major}.{minor}.{patch}"]
search = "{current_version}"
Expand All @@ -41,4 +41,4 @@ message = "Bump version: {current_version} → {new_version}"
commit_args = "--no-verify"

[[tool.bumpversion.files]]
filename = "dbbs_models/__init__.py"
filename = "dbbs_models/__init__.py"