Skip to content

Commit

Permalink
Pin websockets version
Browse files Browse the repository at this point in the history
Not sure what's going on with v9.1 - a question for another day though.
  • Loading branch information
leonhard-s committed May 5, 2021
1 parent e240179 commit 6c29be3
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pythonpublish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools wheel twine
pyhton -m pip install aiohttp backoff coverage coveralls pydantic websockets yarl
python -m pip install aiohttp backoff coverage coveralls pydantic websockets==8.1 yarl
- name: Build and publish
env:
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pythonunittest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install aiohttp backoff coverage coveralls pydantic websockets yarl
pip install aiohttp backoff coverage coveralls pydantic websockets==8.1 yarl
- name: Run tests
env:
SERVICE_ID: ${{secrets.REPO_SERVICE_ID}}
Expand Down
2 changes: 1 addition & 1 deletion auraxium/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,4 @@
]

__author__ = 'Leonhard S.'
__version__ = '0.2.0b1'
__version__ = '0.2.0b2'
2 changes: 1 addition & 1 deletion docs/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ backoff
pydantic
requests
yarl
websockets
websockets == 8.1
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
'backoff',
'pydantic',
'yarl',
'websockets'],
'websockets==8.1'],
license='MIT',
include_package_data=True,
zip_safe=False)

0 comments on commit 6c29be3

Please sign in to comment.