Skip to content

Commit

Permalink
update to genie 24.11 removed universal, added support for 3.13 remov…
Browse files Browse the repository at this point in the history
…e supprt for 3.8 moved version to 1.4.0
  • Loading branch information
btr1975 committed Jan 4, 2025
1 parent 2319740 commit 9f13dfd
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 13 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test-coverage-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@ jobs:
fail-fast: false
matrix:
python-version:
- 3.8
- 3.9
- '3.10'
- '3.11'
- '3.12'
- '3.13'
os:
- ubuntu-latest

Expand All @@ -55,11 +55,11 @@ jobs:
fail-fast: false
matrix:
python-version:
- 3.8
- 3.9
- '3.10'
- '3.11'
- '3.12'
- '3.13'
os:
- ubuntu-latest

Expand All @@ -86,11 +86,11 @@ jobs:
fail-fast: false
matrix:
python-version:
- 3.8
- 3.9
- '3.10'
- '3.11'
- '3.12'
- '3.13'
os:
- ubuntu-latest

Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2020 - 2023 Benjamin Trachtenberg
Copyright (c) 2020 - 2025 Benjamin Trachtenberg

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
4 changes: 2 additions & 2 deletions pyats_genie_command_parse/version.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""
Holds the version information for the package
"""
__copyright__ = "Copyright (c) 2020 - 2024, Benjamin P. Trachtenberg, Brett Gianpetro"
__copyright__ = "Copyright (c) 2020 - 2025, Benjamin P. Trachtenberg, Brett Gianpetro"
__status__ = 'prod'
__version_info__ = (1, 3, 11)
__version_info__ = (1, 4, 0)
__version__ = '.'.join(map(str, __version_info__))
7 changes: 2 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ build-backend = "setuptools.build_meta"
[project]
name = "pyats-genie-command-parse"
dynamic = ["version", "readme", "dependencies"]
requires-python = ">=3.8"
requires-python = ">=3.9"
description = "Run genie parsers directly."
keywords = [
"pyATS",
Expand Down Expand Up @@ -38,11 +38,11 @@ classifiers = [
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]

[project.urls]
Expand All @@ -67,9 +67,6 @@ version = {attr = "pyats_genie_command_parse.version.__version__"}
readme = {file = "README.md", content-type = "text/markdown"}
dependencies = {file = "requirements.txt"}

[tool.distutils.bdist_wheel]
universal = true

[tool.pytest.ini_options]
addopts = "--strict-markers"
markers = [
Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
pyats==24.7
genie==24.7
pyats==24.11
genie==24.11

0 comments on commit 9f13dfd

Please sign in to comment.