From 624036406747beb6799dfcade06f9040a8ff8d9a Mon Sep 17 00:00:00 2001 From: Kevin Fronczak Date: Tue, 5 Jan 2021 09:21:36 -0500 Subject: [PATCH 1/4] Update constants.py --- blinkpy/helpers/constants.py | 1 + 1 file changed, 1 insertion(+) diff --git a/blinkpy/helpers/constants.py b/blinkpy/helpers/constants.py index 3e36187..c3ab313 100644 --- a/blinkpy/helpers/constants.py +++ b/blinkpy/helpers/constants.py @@ -34,6 +34,7 @@ PROJECT_CLASSIFIERS = [ "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", "Topic :: Home Automation", ] From 8bd09c3726c55a0a6197d461d24888a92d747c32 Mon Sep 17 00:00:00 2001 From: Kevin Fronczak Date: Tue, 5 Jan 2021 09:22:04 -0500 Subject: [PATCH 2/4] Delete .gitlab-ci.yml --- .gitlab-ci.yml | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml deleted file mode 100644 index 1db3211..0000000 --- a/.gitlab-ci.yml +++ /dev/null @@ -1,25 +0,0 @@ -image: python - -stages: - - test - -before_script: - - curl -O https://bootstrap.pypa.io/get-pip.py - - python get-pip.py - - pip install tox - -python35: - image: python:3.5 - stage: test - script: tox -e py35 - -python36: - image: python:3.6 - stage: test - script: tox -e py36 - -lint: - image: python:3.6 - stage: test - script: tox -e lint - From a704933a3550a3b3a4d9d614d7ff9ea1e4b67df0 Mon Sep 17 00:00:00 2001 From: Kevin Fronczak Date: Tue, 5 Jan 2021 09:23:29 -0500 Subject: [PATCH 3/4] Update publish.yml --- .github/workflows/publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index bd392ad..473af5d 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -17,7 +17,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v1 with: - python-version: '3.7' + python-version: '3.8' - name: Install dependencies run: | python -m pip install --upgrade pip From 306f8b6cb44739bd5cff07381e07dc64adb204ef Mon Sep 17 00:00:00 2001 From: Kevin Fronczak Date: Tue, 5 Jan 2021 09:24:04 -0500 Subject: [PATCH 4/4] Update tests.yml --- .github/workflows/tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 4369ed9..1e64154 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -10,11 +10,11 @@ jobs: build: runs-on: ${{ matrix.platform }} strategy: - max-parallel: 3 + max-parallel: 4 matrix: platform: - ubuntu-latest - python-version: [3.6, 3.7, 3.8] + python-version: [3.6, 3.7, 3.8, 3.9] steps: - uses: actions/checkout@v2