Skip to content
Open
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
16 changes: 8 additions & 8 deletions .github/workflows/shells-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Python 3.7
- name: Set up Python 3.9
uses: actions/setup-python@v2
with:
python-version: 3.7
python-version: 3.9
- name: Install dependencies
run: |
python -m pip install pip -U
Expand All @@ -37,10 +37,10 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Python 3.7
- name: Set up Python 3.9
uses: actions/setup-python@v2
with:
python-version: 3.7
python-version: 3.9
- name: Install dependencies
run: |
python -m pip install pip -U
Expand All @@ -54,7 +54,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.9"]
python-version: ["3.9"]
steps:
- name: Checkout code
uses: actions/checkout@v2
Expand All @@ -77,7 +77,7 @@ jobs:
runs-on: windows-2019
strategy:
matrix:
python-version: ["3.7", "3.9"]
python-version: ["3.9"]
steps:
- name: Checkout code
uses: actions/checkout@v2
Expand Down Expand Up @@ -153,10 +153,10 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Python 3.7
- name: Set up Python 3.9
uses: actions/setup-python@v2
with:
python-version: 3.7
python-version: 3.9
- name: Install dependencies
run: |
sudo apt-get -y install jq
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -59,3 +59,4 @@ docs/_build/
target/
cloudshell_config.yml
/src/run_calix.py
/.idea
15 changes: 9 additions & 6 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,16 +1,20 @@
repos:
- repo: https://github.com/asottile/pyupgrade
rev: v3.3.1
hooks:
- id: pyupgrade
args:
- "--py37-plus"
- repo: https://github.com/timothycrosley/isort
rev: 5.10.1
rev: 5.12.0
hooks:
- id: isort
language_version: python3.7
- repo: https://github.com/python/black
rev: 22.3.0
rev: 23.1.0
hooks:
- id: black
language_version: python3.7
- repo: https://github.com/pycqa/flake8
rev: 4.0.1
rev: 5.0.4
hooks:
- id: flake8
additional_dependencies: [
Expand All @@ -20,4 +24,3 @@ repos:
flake8-print,
flake8-eradicate,
]
language_version: python3.7
2 changes: 1 addition & 1 deletion shell-definition.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ tosca_definitions_version: tosca_simple_yaml_1_0
metadata:
template_name: Calix AXOS Router Shell 2G
template_author: Anonymous
template_version: 1.0.0
template_version: 1.1.0
template_icon: shell-icon.png

description: >
Expand Down
Loading
Loading