chore: release v2.0.0a1#626
Merged
oboehmer merged 7 commits intorelease/pyats-integration-v1.1-betafrom Mar 10, 2026
Merged
Conversation
Make nac-test-pyats-common a direct dependency instead of optional [adapters]/[all] extras. Users can now install with `pip install nac-test` to get the complete runtime including PyATS adapters. Changes: - Bump version to 2.0.0a1 - Move nac-test-pyats-common>=0.3.0 to direct dependencies - Remove [adapters] and [all] optional dependency groups - Update CI workflow to remove --extra adapters - Update author/maintainer metadata Closes #489
The section header was accidentally removed when deleting the adapters/all extras, causing the dev dependencies to become orphaned.
danischm
approved these changes
Mar 10, 2026
RESTinstance is no longer used by the test templates shipped with nac-test and forces a setuptools<81 pin due to its pkg_resources dependency. Users who need RESTinstance can install it separately. Fixes #628
Move Windows and macOS/Python 3.12+ restrictions under the pyATS Integration feature section since these are pyATS-specific requirements, not breaking changes from nac-test 1.x.
danischm
approved these changes
Mar 10, 2026
39bfca6
into
release/pyats-integration-v1.1-beta
7 checks passed
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Resolves #489
Resolves #628
Make
nac-test-pyats-commona direct dependency instead of optional[adapters]/[all]extras. Users can now install withpip install nac-testto get the complete runtime including PyATS adapters.Changes
Dependencies
nac-test-pyats-common>=0.3.0moved from[project.optional-dependencies]todependencies[adapters]and[all]optional dependency groupsRESTinstanceandsetuptools<81pin from core dependencies (Fixes Remove RESTinstance (and the setuptools pin it requires) from core dependencies #628)CI
.github/workflows/test.yml: Remove--extra adaptersfrom test jobMetadata
1.1.0b3→2.0.0a1Installation (After This Change)
# Simple installation now includes PyATS adapters automatically pip install nac-testNo more
pip install nac-test[all]needed.