Skip to content

Commit b510c99

Browse files
authored
Merge pull request #81 from ni/users/ashukuma/update_version
Update versions in some files (Release work)
2 parents d7bc4db + 651e0e8 commit b510c99

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

README.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Requirements
1212
============
1313
**niveristand** requires the following to be installed:
1414

15-
* VeriStand 2020 or later
15+
* VeriStand 2021 or later
1616
* CPython 3.8 or later (the standard Python, available on python.org and elsewhere)
1717

1818
.. _installation_section:

docs/conf.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@
2525
author = "National Instruments"
2626

2727
# The short X.Y version
28-
version = "3.1"
28+
version = "3.2"
2929
# The full version, including alpha/beta/rc tags
30-
release = "3.1.0"
30+
release = "3.2.0"
3131

3232
# -- General configuration ---------------------------------------------------
3333

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ def get_version(name):
1616
script_dir = os.path.dirname(os.path.realpath(__file__))
1717
script_dir = os.path.join(script_dir, name)
1818
if not os.path.exists(os.path.join(script_dir, 'VERSION')):
19-
version = '3.1.0'
19+
version = '3.2.0'
2020
else:
2121
with open(os.path.join(script_dir, "VERSION"), "r") as version_file:
2222
version = version_file.read().rstrip()

tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
# `tox -e py39,py311,flake8,docs`
1515

1616
[tox]
17-
envlist = py38, py39, py310, py311, flake8
17+
envlist = py38, py39, py310, py311, py312, flake8
1818

1919
[testenv]
2020
commands = pytest --junitxml={envlogdir}/junit-{envname}.xml {posargs}

0 commit comments

Comments
 (0)