diff options
author | Max Wittig <max.wittig@siemens.com> | 2021-01-29 09:23:55 +0100 |
---|---|---|
committer | Max Wittig <max.wittig@siemens.com> | 2021-01-29 09:23:55 +0100 |
commit | 62dd07df98341f35c8629e8f0a987b35b70f7fe6 (patch) | |
tree | 454cb061194b7d6c212f0597bf349dca912466c3 | |
parent | 78a02ced58566b9c05c9be37698f6ee1cfad088c (diff) | |
download | gitlab-62dd07df98341f35c8629e8f0a987b35b70f7fe6.tar.gz |
chore: offically support and test 3.9
-rw-r--r-- | .github/workflows/docs.yml | 4 | ||||
-rw-r--r-- | .github/workflows/test.yml | 6 | ||||
-rw-r--r-- | setup.py | 1 | ||||
-rw-r--r-- | tox.ini | 2 |
4 files changed, 8 insertions, 5 deletions
diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 04f47b6..727ef5e 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -13,7 +13,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v2 with: - python-version: 3.8 + python-version: 3.9 - name: Install dependencies run: pip install tox - name: Build docs @@ -28,7 +28,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v2 with: - python-version: 3.8 + python-version: 3.9 - name: Install dependencies run: pip install tox twine wheel - name: Check twine readme rendering diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 44708d3..1280962 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -17,6 +17,8 @@ jobs: toxenv: py37 - python-version: 3.8 toxenv: py38 + - python-version: 3.9 + toxenv: py39 steps: - uses: actions/checkout@v2 - name: Set up Python ${{ matrix.python-version }} @@ -40,7 +42,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v2 with: - python-version: 3.8 + python-version: 3.9 - name: Install dependencies run: pip install tox pytest-github-actions-annotate-failures - name: Run tests @@ -55,7 +57,7 @@ jobs: - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v2 with: - python-version: 3.8 + python-version: 3.9 - name: Install dependencies run: pip install tox pytest-github-actions-annotate-failures - name: Run tests @@ -42,6 +42,7 @@ setup( "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", ], extras_require={ "autocompletion": ["argcomplete>=1.10.0,<2"], @@ -1,7 +1,7 @@ [tox] minversion = 1.6 skipsdist = True -envlist = py38,py37,py36,pep8,black,twine-check +envlist = py39,py38,py37,py36,pep8,black,twine-check [testenv] passenv = GITLAB_IMAGE GITLAB_TAG |