Skip to content

Commit

Permalink
Release 1.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Maria Wisniewska committed Apr 6, 2023
1 parent cca8819 commit 5da31d9
Show file tree
Hide file tree
Showing 583 changed files with 25,175 additions and 8,108 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.9.1
current_version = 1.10.0
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\.(?P<suffix>.*))?
serialize =
{major}.{minor}.{patch}.{suffix}
Expand Down
68 changes: 33 additions & 35 deletions .github/workflows/python-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,51 +4,49 @@ name: Python Continous Integration

on:
push:
branches: [ "master" ]
branches: ["master"]
pull_request:
branches: [ "master" ]
branches: ["master"]

permissions:
contents: read

jobs:
codecheck:

runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest,windows-latest,macos-latest]
python-version: ['3.7','3.11']
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: ["3.8", "3.11"]

name: Python ${{ matrix.python-version }} on ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Set-up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4.3.0
with:
python-version: ${{ matrix.python-version }}
architecture: 'x64'

- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements-develop.txt
- name: Install SPSDK
run: |
python setup.py install
- name: Run Codecheck
run: |
python codecheck.py -s --output reports_codecheck --info-check gitcov
- name: Archive Results
uses: actions/upload-artifact@v3
with:
name: Results-${{ matrix.python-version }}-${{ matrix.os }}
path: reports_codecheck
if: always() && job.status == 'failure'

- uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Set-up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4.3.0
with:
python-version: ${{ matrix.python-version }}
architecture: "x64"

- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements-develop.txt
- name: Install SPSDK
run: |
python setup.py install
- name: Run Codecheck
run: |
python codecheck.py -s --output reports_codecheck --info-check gitcov
- name: Archive Results
uses: actions/upload-artifact@v3
with:
name: Results-${{ matrix.python-version }}-${{ matrix.os }}
path: reports_codecheck
if: always() && job.status == 'failure'
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ repos:
entry: python tools/checker_copyright_year.py
language: system
- repo: https://github.com/psf/black
rev: 22.12.0
rev: 23.1.0
hooks:
- id: black
- repo: https://github.com/pycqa/isort
rev: 5.8.0
rev: 5.12.0
hooks:
- id: isort
2 changes: 1 addition & 1 deletion .pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ persistent=yes

# Minimum Python version to use for version dependent checks. Will default to
# the version used to run pylint.
py-version=3.7
py-version=3.8

# Discover python modules and packages in the file system subtree.
recursive=no
Expand Down
2 changes: 1 addition & 1 deletion .readthedocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ sphinx:

# Optionally set the version of Python and requirements required to build your docs
python:
version: "3.7"
version: "3.8"
install:
- method: pip
path: .[tp]
Expand Down
2 changes: 1 addition & 1 deletion SW_Content_Register_SPSDK.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
NXP Software Content Register

Package: NXP SPSDK
Version: 1.9.1
Version: 1.10.0
Outgoing License: BSD-3-Clause
License Files: LICENSE
Type of content: Source code
Expand Down
Loading

0 comments on commit 5da31d9

Please sign in to comment.