Skip to content

Commit

Permalink
Build wheels on Python 3.9.
Browse files Browse the repository at this point in the history
  • Loading branch information
aaugustin committed May 2, 2021
1 parent 5d6fcf9 commit 56be5f7
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .appveyor.yml
Expand Up @@ -6,7 +6,7 @@ skip_branch_with_pr: true

environment:
# websockets only works on Python >= 3.6.
CIBW_BUILD: cp36-* cp37-* cp38-*
CIBW_BUILD: cp36-* cp37-* cp38-* cp39-*
CIBW_TEST_COMMAND: python -W default -m unittest
WEBSOCKETS_TESTS_TIMEOUT_FACTOR: 100

Expand Down
2 changes: 1 addition & 1 deletion .travis.yml
@@ -1,7 +1,7 @@
env:
global:
# websockets only works on Python >= 3.6.
- CIBW_BUILD="cp36-* cp37-* cp38-*"
- CIBW_BUILD="cp36-* cp37-* cp38-* cp39-*""
- CIBW_TEST_COMMAND="python3 -W default -m unittest"
- WEBSOCKETS_TESTS_TIMEOUT_FACTOR=100

Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
@@ -1,5 +1,5 @@
[bdist_wheel]
python-tag = py36.py37
python-tag = py36.py37.py38.py39

[metadata]
license_file = LICENSE
Expand Down
1 change: 1 addition & 0 deletions setup.py
Expand Up @@ -54,6 +54,7 @@
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
package_dir = {'': 'src'},
package_data = {'websockets': ['py.typed']},
Expand Down

0 comments on commit 56be5f7

Please sign in to comment.