Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Differentiate between tested with version and api version #983

Merged
merged 8 commits into from
May 24, 2019
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
12 changes: 9 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,9 @@ NI-DMM Python API Status
+-------------------------------+----------------------+
| NI-DMM (nidmm) | |
+===============================+======================+
| Driver Version Tested Against | 19.1.0d11 |
| Driver Version Tested Against | 18.1.0 |
+-------------------------------+----------------------+
| Driver API Version | 19.1.0d11 |
+-------------------------------+----------------------+
| PyPI Version | |nidmmLatestVersion| |
+-------------------------------+----------------------+
Expand Down Expand Up @@ -187,7 +189,9 @@ NI-ModInst Python API Status
+-------------------------------+--------------------------+
| NI-ModInst (nimodinst) | |
+===============================+==========================+
| Driver Version Tested Against | 255.0.0d4 |
| Driver Version Tested Against | 18.0.0 |
+-------------------------------+--------------------------+
| Driver API Version | 255.0.0d4 |
+-------------------------------+--------------------------+
| PyPI Version | |nimodinstLatestVersion| |
+-------------------------------+--------------------------+
Expand Down Expand Up @@ -226,7 +230,9 @@ NI-SCOPE Python API Status
+-------------------------------+------------------------+
| NI-SCOPE (niscope) | |
+===============================+========================+
| Driver Version Tested Against | 19.1.0d28 |
| Driver Version Tested Against | 18.1.0 |
+-------------------------------+------------------------+
| Driver API Version | 19.1.0d28 |
+-------------------------------+------------------------+
| PyPI Version | |niscopeLatestVersion| |
+-------------------------------+------------------------+
Expand Down
3 changes: 2 additions & 1 deletion build/templates/status.inc.mako
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@
<%
table_contents = []
table_contents.append(['{0} ({1})'.format(driver_name, module_name), '', ])
table_contents.append(['Driver Version Tested Against', config['last_tested_version']])
table_contents.append(['Driver Version Tested Against', config['latest_runtime_version_tested_against']])
table_contents.append(['Driver API Version', config['api_version']])
table_contents.append(['PyPI Version', '|{0}LatestVersion|'.format(module_name)])
table_contents.append(['Supported Python Version', '|{0}PythonVersion|'.format(module_name)])
table_contents.append(['Open Issues', '|{0}OpenIssues|'.format(module_name)])
Expand Down
4 changes: 3 additions & 1 deletion docs/nidmm/status.inc
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@ NI-DMM Python API Status
+-------------------------------+----------------------+
| NI-DMM (nidmm) | |
+===============================+======================+
| Driver Version Tested Against | 19.1.0d11 |
| Driver Version Tested Against | 18.1.0 |
+-------------------------------+----------------------+
| Driver API Version | 19.1.0d11 |
+-------------------------------+----------------------+
| PyPI Version | |nidmmLatestVersion| |
+-------------------------------+----------------------+
Expand Down
4 changes: 3 additions & 1 deletion docs/nimodinst/status.inc
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@ NI-ModInst Python API Status
+-------------------------------+--------------------------+
| NI-ModInst (nimodinst) | |
+===============================+==========================+
| Driver Version Tested Against | 255.0.0d4 |
| Driver Version Tested Against | 18.0.0 |
+-------------------------------+--------------------------+
| Driver API Version | 255.0.0d4 |
+-------------------------------+--------------------------+
| PyPI Version | |nimodinstLatestVersion| |
+-------------------------------+--------------------------+
Expand Down
4 changes: 3 additions & 1 deletion docs/niscope/status.inc
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@ NI-SCOPE Python API Status
+-------------------------------+------------------------+
| NI-SCOPE (niscope) | |
+===============================+========================+
| Driver Version Tested Against | 19.1.0d28 |
| Driver Version Tested Against | 18.1.0 |
+-------------------------------+------------------------+
| Driver API Version | 19.1.0d28 |
+-------------------------------+------------------------+
| PyPI Version | |niscopeLatestVersion| |
+-------------------------------+------------------------+
Expand Down
2 changes: 1 addition & 1 deletion src/nidmm/metadata/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
],
'driver_name': 'NI-DMM',
'init_function': 'InitWithOptions',
'last_tested_version': '19.1.0d11',
'api_version': '19.1.0d11',
'library_info': {
'Linux': {
'64bit': {
Expand Down
1 change: 1 addition & 0 deletions src/nidmm/metadata/config_addon.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# We need to maintain the version here since it needs to be updated by the build process on GitHub
config_additional_config = {
'module_version': '1.1.1.dev0',
'latest_runtime_version_tested_against': '18.1.0',
}
2 changes: 1 addition & 1 deletion src/nimodinst/metadata/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
],
'driver_name': 'NI-ModInst',
'init_function': 'OpenInstalledDevicesSession',
'last_tested_version': '255.0.0d4',
'api_version': '255.0.0d4',
'library_info': {
'Linux': {
'64bit': {
Expand Down
1 change: 1 addition & 0 deletions src/nimodinst/metadata/config_addon.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# We need to maintain the version here since it needs to be updated by the build process on GitHub
config_additional_config = {
'module_version': '1.1.1.dev0',
'latest_runtime_version_tested_against': '18.0.0',
}
2 changes: 1 addition & 1 deletion src/niscope/metadata/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
],
'driver_name': 'NI-SCOPE',
'init_function': 'InitWithOptions',
'last_tested_version': '19.1.0d28',
'api_version': '19.1.0d28',
'library_info': {
'Linux': {
'64bit': {
Expand Down
1 change: 1 addition & 0 deletions src/niscope/metadata/config_addon.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# We need to maintain the version here since it needs to be updated by the build process on GitHub
config_additional_config = {
'module_version': '1.1.1.dev0',
'latest_runtime_version_tested_against': '18.1.0',
}