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 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 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 - 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", ]