Skip to content

Commit

Permalink
fix for windows installs
Browse files Browse the repository at this point in the history
  • Loading branch information
marcelveldt committed Dec 30, 2020
1 parent f04a79f commit ce677b0
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# This workflow will install Python dependencies, run tests and lint
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions

name: Test with Pre-commit and Tox
name: Test with Pre-commit

on:
push:
Expand All @@ -25,7 +25,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox tox-gh-actions pre-commit
pip install pre-commit
pre-commit install-hooks
- name: Lint with pre-commit
run: pre-commit run --all-files
Expand Down
3 changes: 2 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
aiohttp[speedups]==3.7.3
aiohttp==3.7.3; sys_platform == 'win32'
aiohttp[speedups]==3.7.3; sys_platform != 'win32'
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

from setuptools import find_packages, setup

VERSION = "0.0.7"
VERSION = "0.0.8"

PROJECT_DIR = Path(__file__).parent.resolve()
README_FILE = PROJECT_DIR / "README.md"
Expand Down

0 comments on commit ce677b0

Please sign in to comment.