-
Notifications
You must be signed in to change notification settings - Fork 67
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #77 from introlab/dev
Main pull for 1.1.0 release
- Loading branch information
Showing
32 changed files
with
1,390 additions
and
429 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,3 +18,4 @@ python-3.10 | |
/python/OpenIMU.spec | ||
.DS_Store | ||
*.dmg | ||
python-3.11 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,4 +20,4 @@ def upgrade(): | |
|
||
|
||
def downgrade(): | ||
op.remove_column('tabSensors', 'hw_id') | ||
op.drop_column('tabSensors', 'hw_id') |
23 changes: 23 additions & 0 deletions
23
python/alembic/versions/976c9bb61bcc_added_settings_for_sensors.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
"""added settings for sensors | ||
Revision ID: 976c9bb61bcc | ||
Revises: 9f2446706f91 | ||
Create Date: 2023-11-30 09:18:13.301296 | ||
""" | ||
from alembic import op | ||
from sqlalchemy import Column, String | ||
|
||
# revision identifiers, used by Alembic. | ||
revision = '976c9bb61bcc' | ||
down_revision = '9f2446706f91' | ||
branch_labels = None | ||
depends_on = None | ||
|
||
|
||
def upgrade(): | ||
op.add_column('tabSensors', Column('settings', String())) | ||
|
||
|
||
def downgrade(): | ||
op.drop_column('tabSensors', 'settings') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
pypiwin32==223; sys_platform == 'win32' | ||
PySide6==6.3.1 | ||
cython==0.29.30 | ||
numpy==1.23.1 | ||
scipy==1.8.1 | ||
sqlalchemy==1.4.39 | ||
alembic==1.8.1 | ||
pyinstaller==5.2 | ||
PySide6==6.6.0 | ||
cython==3.0.5 | ||
numpy==1.26.2 | ||
scipy==1.11.4 | ||
sqlalchemy==2.0.23 | ||
alembic==1.12.1 | ||
pyinstaller==5.13.2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.