Skip to content

Commit

Permalink
Merge branch 'master' into fix-binary-error
Browse files Browse the repository at this point in the history
  • Loading branch information
xinydev authored Sep 3, 2021
2 parents ff51adc + 705e8b4 commit 5c066c2
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v1
with:
python-version: 3.8
python-version: '3.9'
- name: Install tox
run: python -m pip install tox
- name: Run linting
Expand All @@ -21,7 +21,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python: [3.6, 3.7, 3.8]
python: ['3.6', '3.7', '3.8', '3.9']
steps:
- uses: actions/checkout@v2
- name: Setup Python
Expand Down
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ repos:
rev: 19.10b0
hooks:
- id: black
language_version: python3.8
language_version: python3.9
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
packages=find_packages(exclude=["cloudevents.tests"]),
version=pypi_config["version_target"],
Expand Down
6 changes: 3 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py{36,37,38},lint
envlist = py{36,37,38,39},lint
skipsdist = True

[testenv]
Expand All @@ -13,7 +13,7 @@ setenv =
commands = pytest {env:PYTESTARGS} {posargs}

[testenv:reformat]
basepython=python3.8
basepython=python3.9
deps =
black
isort
Expand All @@ -22,7 +22,7 @@ commands =
isort cloudevents samples

[testenv:lint]
basepython = python3.8
basepython = python3.9
deps =
black
isort
Expand Down

0 comments on commit 5c066c2

Please sign in to comment.