Skip to content
This repository has been archived by the owner on Dec 3, 2021. It is now read-only.

Downgrade netmiko since utility is still python2 #301

Merged
merged 2 commits into from
Jan 31, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
- Cleaning up Troubleshooting Lesson [#299](https://github.com/nre-learning/nrelabs-curriculum/pull/299)
- Introduction to Git (Refurbished Lesson) [#183](https://github.com/nre-learning/nrelabs-curriculum/pull/183)
- Introduction to REST APIs (Refurbished Lesson) [#291](https://github.com/nre-learning/nrelabs-curriculum/pull/291)
- Downgrade netmiko since utility is still python2 [#301](https://github.com/nre-learning/nrelabs-curriculum/pull/301)

## v1.0.0 - August 08, 2019

Expand Down
3 changes: 3 additions & 0 deletions images/utility/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@ RUN echo "export VISIBLE=now" >> /etc/profile
ADD requirements.txt /requirements.txt
RUN pip install -r /requirements.txt

# Temporary fix to get NAPALM working. Long-term we should convert utility to use python 3
RUN pip install --upgrade netmiko==2.4.2

# The latest release of JSNAPy as of now was 1.3.2, released in
# May of 2018. Since then, there have been many fixes, and the main one we care
# about is the YAML deprecation notices. I will follow up with them and ask why
Expand Down