Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

devops: Run CI jobs also on Python 3.9 #226

Merged
merged 2 commits into from
Oct 22, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,16 @@ jobs:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: [3.7, 3.8]
browser: [chromium, firefox, webkit]
include:
- os: ubuntu-latest
python-version: 3.9
browser: chromium
- os: windows-latest
python-version: 3.9
browser: chromium
- os: macos-latest
python-version: 3.9
browser: chromium
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
Expand All @@ -63,7 +73,7 @@ jobs:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install --upgrade pip wheel
pip install -r local-requirements.txt
pip install -e .
- name: Build driver
Expand Down
5 changes: 3 additions & 2 deletions local-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,11 @@ pytest-sugar==0.9.4
pytest-xdist==2.1.0
pytest-timeout==1.4.2
pixelmatch==0.2.1
Pillow==7.2.0
Pillow==8.0.0
mypy==0.782
setuptools==50.3.0
twisted==20.3.0
# TODO: use PyPi version after >20.3.0 is released
git+https://github.com/twisted/twisted.git@4ff22287cab3b54f51cee41ea2619e72d1bff2e4
wheel==0.35.1
black==20.8b1
pre-commit==2.7.1
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
Expand Down