Skip to content

Commit

Permalink
Merge pull request #61 from vinteo/upgrade-aiohttp
Browse files Browse the repository at this point in the history
chore: update aiohttp, bump to version 0.7.2
  • Loading branch information
vinteo authored Mar 2, 2022
2 parents 4e79fe5 + ae49130 commit 00d9d40
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/linting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
# Run Linter against code base #
################################
- name: Lint Code Base
uses: github/super-linter@v3
uses: github/super-linter@v4
env:
VALIDATE_ALL_CODEBASE: true
DEFAULT_BRANCH: master
Expand Down
2 changes: 1 addition & 1 deletion pyopensprinkler/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@


def synchronized(lock):
""" Synchronization decorator """
"""Synchronization decorator"""

def wrap(f):
@functools.wraps(f)
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""pyopensprinkler setup script."""
from setuptools import setup

version = "0.7.1"
version = "0.7.2"

github_username = "vinteo"
github_repository = "py-opensprinkler"
Expand All @@ -18,7 +18,7 @@
author="Vincent Teo, Travis Glenn Hansen",
author_email="[email protected], [email protected]",
packages=["pyopensprinkler"],
install_requires=["aiohttp==3.7.4", "backoff==1.10.0"],
install_requires=["aiohttp==3.8.1", "backoff==1.10.0"],
url=github_url,
download_url=download_url,
project_urls=project_urls,
Expand Down

0 comments on commit 00d9d40

Please sign in to comment.