Skip to content

Commit 9ea3475

Browse files
committed
moved pyats and genie to 24.3
1 parent e87e025 commit 9ea3475

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

.github/workflows/publish-to-pypi.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Set up Python
1919
uses: actions/setup-python@v4
2020
with:
21-
python-version: 3.8
21+
python-version: 3.9
2222

2323
- name: Install dependencies
2424
run: |

.github/workflows/test-coverage-lint.yml

+1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ jobs:
2828
- 3.9
2929
- '3.10'
3030
- '3.11'
31+
- '3.12'
3132

3233
steps:
3334
- uses: actions/checkout@v3

pyats_genie_command_parse/version.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
22
Holds the version information for the package
33
"""
4-
__copyright__ = "Copyright (c) 2020 - 2023, Benjamin P. Trachtenberg, Brett Gianpetro"
4+
__copyright__ = "Copyright (c) 2020 - 2024, Benjamin P. Trachtenberg, Brett Gianpetro"
55
__status__ = 'prod'
6-
__version_info__ = (1, 3, 9)
6+
__version_info__ = (1, 3, 10)
77
__version__ = '.'.join(map(str, __version_info__))

requirements.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
pyats==23.10
2-
genie==23.10
1+
pyats==24.3
2+
genie==24.3

0 commit comments

Comments
 (0)