Skip to content

Commit

Permalink
Deprecated files removal
Browse files Browse the repository at this point in the history
  • Loading branch information
carneirofc committed Nov 10, 2021
1 parent e090a53 commit 522c2ef
Show file tree
Hide file tree
Showing 7 changed files with 57 additions and 4,283 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
*.so
*.spec
.Python
.code-workspace
.eggs/
.installed.cfg
.mypy_cache
Expand Down
5 changes: 4 additions & 1 deletion .mypy.ini
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
[mypy]
ignore_missing_imports = True
allow_redefinition = False
ignore_missing_imports = True
show_error_codes = True
strict_equality = True
4 changes: 2 additions & 2 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
include LICENSE
include README.md
include *.md
include requirements.txt
recursive-include pydrs *.sh *.txt *.csv *.json
recursive-include src/pydrs *.sh *.txt *.csv *.json
4,263 changes: 0 additions & 4,263 deletions pydrs/pydrs.py

This file was deleted.

8 changes: 0 additions & 8 deletions siriuspy_workspace.code-workspace

This file was deleted.

4 changes: 3 additions & 1 deletion src/pydrs/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
from .pydrs import SerialDRS

__author__ = ""
__version__ = "0.0.1"
__date__ = ""

from .pydrs import SerialDRS
__all__ = ["SerialDRS"]
55 changes: 47 additions & 8 deletions src/pydrs/consts/__init__.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,47 @@
ListVar = ['iLoad1','iLoad2','iMod1','iMod2','iMod3','iMod4','vLoad',
'vDCMod1','vDCMod2','vDCMod3','vDCMod4','vOutMod1','vOutMod2',
'vOutMod3','vOutMod4','temp1','temp2','temp3','temp4','ps_OnOff',
'ps_OpMode','ps_Remote','ps_OpenLoop','ps_SoftInterlocks',
'ps_HardInterlocks','iRef','wfmRef_Gain','wfmRef_Offset','sigGen_Enable','sigGen_Type',
'sigGen_Ncycles','sigGenPhaseStart','sigGen_PhaseEnd','sigGen_Freq',
'sigGen_Amplitude','sigGen_Offset','sigGen_Aux','dp_ID','dp_Class','dp_Coeffs','ps_Model',
'wfmRef_PtrBufferStart','wfmRef_PtrBufferEnd','wfmRef_PtrBufferK','wfmRef_SyncMode']
ListVar = [
"iLoad1",
"iLoad2",
"iMod1",
"iMod2",
"iMod3",
"iMod4",
"vLoad",
"vDCMod1",
"vDCMod2",
"vDCMod3",
"vDCMod4",
"vOutMod1",
"vOutMod2",
"vOutMod3",
"vOutMod4",
"temp1",
"temp2",
"temp3",
"temp4",
"ps_OnOff",
"ps_OpMode",
"ps_Remote",
"ps_OpenLoop",
"ps_SoftInterlocks",
"ps_HardInterlocks",
"iRef",
"wfmRef_Gain",
"wfmRef_Offset",
"sigGen_Enable",
"sigGen_Type",
"sigGen_Ncycles",
"sigGenPhaseStart",
"sigGen_PhaseEnd",
"sigGen_Freq",
"sigGen_Amplitude",
"sigGen_Offset",
"sigGen_Aux",
"dp_ID",
"dp_Class",
"dp_Coeffs",
"ps_Model",
"wfmRef_PtrBufferStart",
"wfmRef_PtrBufferEnd",
"wfmRef_PtrBufferK",
"wfmRef_SyncMode",
]

0 comments on commit 522c2ef

Please sign in to comment.