Thanks to visit codestin.com
Credit goes to github.com

Skip to content
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
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
if: always()
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./cov.xml
file: ./coverage.xml

lint:
runs-on: ubuntu-latest
Expand Down
10 changes: 9 additions & 1 deletion docs/changelog.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,15 @@
Changelog
=========

Specify PyJWT[crypto] as a dependency, and dropped the explicit dependency to ``cryptography`` (`Issue #116 <https://github.com/brettcannon/gidgethub/issues/116>`_).
4.1.1
-----

- Fix func:`abc.GitHubAPI.graphql` to accept response content types lacking
spaces; affects GitHub Enterprise
(`Issue #122 <https://github.com/brettcannon/gidgethub/pull/122>`_)

- Specify PyJWT[crypto] as a dependency, and dropped the explicit dependency to
``cryptography`` (`Issue #116 <https://github.com/brettcannon/gidgethub/issues/116>`_).

4.1.0
-----
Expand Down
2 changes: 1 addition & 1 deletion gidgethub/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""An async GitHub API library"""
__version__ = "4.1.0"
__version__ = "4.1.1"

import http
from typing import Any, Optional
Expand Down
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ def install_flit_dev_deps(session):
@nox.session(python=["3.6", "3.7", "3.8"])
def tests(session):
install_flit_dev_deps(session)
session.run("pytest", "--cov=gidgethub", "tests")
session.run("pytest", "--cov=gidgethub", "--cov-report=xml", "-n=auto", "tests")


@nox.session
Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@ test = ["importlib-resources", "pytest>=5.4.1", "pytest-asyncio", "pytest-tornas
doc = ["sphinx"]
# The 'dev' target should contain all dependencies listed in any extras coming
# after it to make sure that the test suite will run successfully.
dev = ["aiohttp", "black", "coverage[toml]>=5.0.3", "httpx", "mypy", "pytest-cov", "tornado"]
dev = ["aiohttp", "black", "coverage[toml]>=5.0.3", "httpx", "mypy", "pytest-cov",
"pytest-xdist", "tornado"]
aiohttp = ["aiohttp"]
tornado = ["tornado"]
httpx = ["httpx>=0.11.0"]
Expand Down