Skip to content

Commit 7de65af

Browse files
Updated rfsg module version
1 parent 71f92e3 commit 7de65af

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-10
lines changed

docs/nirfsg/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,15 +55,15 @@
5555

5656
# General information about the project.
5757
project = 'NI-RFSG Python API'
58-
copyright = '2017-2025, National Instruments Corporation'
58+
copyright = '2025-2025, National Instruments Corporation'
5959
author = 'NI'
6060

6161
# The version info for the project you're documenting, acts as replacement for
6262
# |version| and |release|, also used in various other places throughout the
6363
# built documents.
6464
#
6565
# The full version, including alpha/beta/rc tags.
66-
release = '1.4.8.dev0'
66+
release = '0.2.0'
6767
# The short X.Y version.
6868
version = release[:3]
6969

docs/nirfsg/examples.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Examples
22
========
33

4-
`You can download all nirfsg examples for latest version here <https://github.com/ni/nimi-python/releases/download/0.2.0/nirfsg_examples.zip>`_
4+
`You can download all nirfsg examples here <https://github.com/ni/nimi-python/releases/download/0.2.0/nirfsg_examples.zip>`_
55

66
nirfsg_cw.py
77
------------
@@ -10,5 +10,5 @@ nirfsg_cw.py
1010
:language: python
1111
:linenos:
1212
:encoding: utf8
13-
:caption: `(nirfsg_cw.py) <https://github.com/ni/nimi-python/blob/master/src/nirfsg/examples/nirfsg_cw.py>`_
13+
:caption: `(nirfsg_cw.py) <https://github.com/ni/nimi-python/blob/0.2.0/src/nirfsg/examples/nirfsg_cw.py>`_
1414

docs/nirfsg/installation.inc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ As a prerequisite to using the **nirfsg** module, you must install the NI-RFSG r
88

99
The nimi-python modules (i.e. for **NI-RFSG**) can be installed with `pip <http://pypi.python.org/pypi/pip>`_::
1010

11-
$ python -m pip install nirfsg
11+
$ python -m pip install nirfsg~=0.2.0
1212

1313

docs/nirfsg/status.inc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ NI-RFSG Python API Status
55
+-------------------------------+-----------------------+
66
| NI-RFSG (nirfsg) | |
77
+===============================+=======================+
8-
| Driver Version Tested Against | 2023 Q1.1 |
8+
| Driver Version Tested Against | 2025 Q1 |
99
+-------------------------------+-----------------------+
1010
| PyPI Version | |nirfsgLatestVersion| |
1111
+-------------------------------+-----------------------+

generated/nirfsg/nirfsg/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
1.4.8.dev0
1+
0.2.0
22

generated/nirfsg/nirfsg/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# This file was generated
33

44

5-
__version__ = '1.4.8.dev0'
5+
__version__ = '0.2.0'
66

77
from nirfsg.enums import * # noqa: F403,F401,H303
88
from nirfsg.errors import DriverWarning # noqa: F401
@@ -77,7 +77,7 @@ def is_venv():
7777
info['driver']['name'] = "NI-RFSG"
7878
info['driver']['version'] = driver_version
7979
info['module']['name'] = 'nirfsg'
80-
info['module']['version'] = "1.4.8.dev0"
80+
info['module']['version'] = "0.2.0"
8181
info['python']['version'] = sys.version
8282
info['python']['bits'] = '64' if is_python_64bit() else '32'
8383
info['python']['is_venv'] = is_venv()

generated/nirfsg/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ def read_contents(file_to_read):
1616
setup(
1717
name=pypi_name,
1818
zip_safe=True,
19-
version='1.4.8.dev0',
19+
version='0.2.0',
2020
description='NI-RFSG Python API',
2121
long_description=read_contents('README.rst'),
2222
long_description_content_type='text/x-rst',

0 commit comments

Comments
 (0)