Skip to content

Commit

Permalink
Prep for 4.1.1 release (#126)
Browse files Browse the repository at this point in the history
  • Loading branch information
brettcannon committed Jun 6, 2020
1 parent b236be1 commit e751664
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
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
@@ -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
@@ -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
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
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

0 comments on commit e751664

Please sign in to comment.