Skip to content

Commit

Permalink
new wheel
Browse files Browse the repository at this point in the history
  • Loading branch information
olivierfriard committed Oct 7, 2024
1 parent f227615 commit 7564dd4
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
4 changes: 3 additions & 1 deletion boris/db_functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -212,10 +212,12 @@ def load_aggregated_events_in_db(

db = sqlite3.connect(":memory:")

"""
# only for debugging
import os

os.system("rm /tmp/ramdisk/aggreg.sqlite")
db = sqlite3.connect("/tmp/ramdisk/aggreg.sqlite", isolation_level=None)
"""

db.row_factory = sqlite3.Row
cursor2 = db.cursor()
Expand Down
2 changes: 1 addition & 1 deletion boris/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@
"""

__version__ = "8.27.9"
__version__ = "8.27.10"
__version_date__ = "2024-10-07"
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "boris-behav-obs"
version = "8.27.9"
version = "8.27.10"
description = "BORIS - Behavioral Observation Research Interactive Software"
authors = [{ name="Olivier Friard", email="[email protected]" }]
readme = "README.rst"
Expand Down Expand Up @@ -58,7 +58,7 @@ line-length = 140
exclude = ["*_ui.py", "mpv*"]

[tool.bumpver]
current_version = "8.27.9"
current_version = "8.27.10"
version_pattern = "MAJOR.MINOR.PATCH"


Expand Down

0 comments on commit 7564dd4

Please sign in to comment.