Fix dependency on my sqlcipher4 package
This commit is contained in:
parent
ffc52bdf08
commit
6d199dbca2
13 changed files with 38 additions and 11 deletions
|
|
@ -5,7 +5,7 @@ from datetime import date, timedelta
|
|||
|
||||
import pytest
|
||||
from bouquin.db import DBManager
|
||||
from sqlcipher3 import dbapi2 as sqlite
|
||||
from sqlcipher4 import dbapi2 as sqlite
|
||||
|
||||
|
||||
def _today():
|
||||
|
|
|
|||
|
|
@ -14,7 +14,7 @@ from PySide6.QtWidgets import (
|
|||
QInputDialog,
|
||||
QMessageBox,
|
||||
)
|
||||
from sqlcipher3.dbapi2 import IntegrityError
|
||||
from sqlcipher4.dbapi2 import IntegrityError
|
||||
|
||||
# ============================================================================
|
||||
# DB Layer Tag Tests
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@ from bouquin.time_log import (
|
|||
)
|
||||
from PySide6.QtCore import QDate, Qt
|
||||
from PySide6.QtWidgets import QDialog, QFileDialog, QInputDialog, QMessageBox
|
||||
from sqlcipher3.dbapi2 import IntegrityError
|
||||
from sqlcipher4.dbapi2 import IntegrityError
|
||||
|
||||
|
||||
@pytest.fixture
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue