From 7cc4d5fc96a4243155e5a91a5ba2b11bbe8d5961 Mon Sep 17 00:00:00 2001 From: Trecia Agoylo Date: Tue, 19 Mar 2024 11:41:48 +0800 Subject: [PATCH] ci: update pyyaml version to 6.0.0 Signed-off-by: Trecia Agoylo --- .github/workflows/build.yml | 7 +++---- pyproject.toml | 2 +- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 31107d02..3010f54c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -7,7 +7,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.7", "3.8", "3.9", "3.10"] + python-version: ["3.8", "3.9", "3.10"] steps: - uses: actions/checkout@v2 @@ -20,7 +20,6 @@ jobs: run: | python -m pip install --upgrade pip python -m pip install -r requirements.txt - pip install setuptools wheel twine - name: Install nebula run: | @@ -28,6 +27,6 @@ jobs: python -c "import nebula" - name: Test - run: / + run: | cd tests - pytest test_cli.py::test_cli_help -s -v \ No newline at end of file + pytest test_cli.py::test_cli_help -s -v diff --git a/pyproject.toml b/pyproject.toml index c9ce9cfd..91f5d9ee 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,7 +8,7 @@ authors = ["Travis F. Collins "] python = "^3.6" pyfiglet = "^0.8.post1" fabric = "^2.5.0" -pyyaml = "^5.3.1" +pyyaml = "^6.0.0" pyserial = "^3.4" pytest = "^7.0.0" pyvesync_v2 = "^1.1.0"