From 8c3fa610371ff1d3274b01ee1d83869955539982 Mon Sep 17 00:00:00 2001 From: mason3k <48703453+mason3k@users.noreply.github.com> Date: Thu, 19 Dec 2024 12:17:26 -0600 Subject: [PATCH 1/3] Create python-package.yml --- .github/workflows/python-package.yml | 40 ++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 .github/workflows/python-package.yml diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml new file mode 100644 index 0000000..e56abb6 --- /dev/null +++ b/.github/workflows/python-package.yml @@ -0,0 +1,40 @@ +# This workflow will install Python dependencies, run tests and lint with a variety of Python versions +# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python + +name: Python package + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +jobs: + build: + + runs-on: ubuntu-latest + strategy: + fail-fast: false + matrix: + python-version: ["3.9", "3.10", "3.11"] + + steps: + - uses: actions/checkout@v4 + - name: Set up Python ${{ matrix.python-version }} + uses: actions/setup-python@v3 + with: + python-version: ${{ matrix.python-version }} + - name: Install dependencies + run: | + python -m pip install --upgrade pip + python -m pip install flake8 pytest + if [ -f requirements.txt ]; then pip install -r requirements.txt; fi + - name: Lint with flake8 + run: | + # stop the build if there are Python syntax errors or undefined names + flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics + # exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide + flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics + - name: Test with pytest + run: | + pytest From f4f30560845f82cf1e9cff0d26931bdd4f54e682 Mon Sep 17 00:00:00 2001 From: dev-adi-github-nuitka <145064571+dev-adi-github-nuitka@users.noreply.github.com> Date: Thu, 19 Dec 2024 12:25:58 -0600 Subject: [PATCH 2/3] =?UTF-8?q?=F0=9F=90=9B=20install=20test=20deps=20in?= =?UTF-8?q?=20pipeline?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/python-package.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index e56abb6..faa22ee 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -16,7 +16,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.9", "3.10", "3.11"] + python-version: ["3.10", "3.11"] steps: - uses: actions/checkout@v4 @@ -27,7 +27,8 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - python -m pip install flake8 pytest + python -m pip install flake8 + python -m pip install ".[test]" if [ -f requirements.txt ]; then pip install -r requirements.txt; fi - name: Lint with flake8 run: | From 8bcdd3b318e9e792676752b3d2ab451aa9f259c2 Mon Sep 17 00:00:00 2001 From: dev-adi-github-nuitka <145064571+dev-adi-github-nuitka@users.noreply.github.com> Date: Thu, 19 Dec 2024 12:32:07 -0600 Subject: [PATCH 3/3] =?UTF-8?q?=E2=AC=86=EF=B8=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- requirements.txt | 25 ++++++++++++------------- 1 file changed, 12 insertions(+), 13 deletions(-) diff --git a/requirements.txt b/requirements.txt index 443bde8..4dbda8b 100644 --- a/requirements.txt +++ b/requirements.txt @@ -2,30 +2,29 @@ # This file is autogenerated by pip-compile with Python 3.12 # by the following command: # -# pip-compile --output-file=requirements.txt pyproject.toml +# pip-compile --output-file=requirements.txt # -annotated-types==0.6.0 +annotated-types==0.7.0 # via pydantic -anyio==3.7.1 - # via - # fastapi - # starlette -fastapi==0.105.0 +anyio==4.7.0 + # via starlette +fastapi==0.115.6 # via fastapi-demo (pyproject.toml) -idna==3.6 +idna==3.10 # via anyio -pydantic==2.5.2 +pydantic==2.10.4 # via # fastapi # fastapi-demo (pyproject.toml) -pydantic-core==2.14.5 +pydantic-core==2.27.2 # via pydantic -sniffio==1.3.0 +sniffio==1.3.1 # via anyio -starlette==0.27.0 +starlette==0.41.3 # via fastapi -typing-extensions==4.9.0 +typing-extensions==4.12.2 # via + # anyio # fastapi # pydantic # pydantic-core