diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index d090449..82addab 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ['3.6', '3.7', '3.8', '3.9', '3.10'] + python-version: ['3.7', '3.8', '3.9', '3.10'] steps: - uses: actions/checkout@v2 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 8941517..10ea4fc 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -8,7 +8,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ['3.6', '3.7', '3.8', '3.9', '3.10'] + python-version: ['3.7', '3.8', '3.9', '3.10'] steps: - uses: actions/checkout@v2 diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 9e3236f..db67e1b 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,5 +1,5 @@ repos: - repo: https://github.com/psf/black - rev: 21.9b0 + rev: 21.12b0 hooks: - id: black \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index c8a977d..08ff427 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.19.0] - 2022-01-26 +### Changed +- Requires [`httpx`](https://www.python-httpx.org)==0.22.\* + +### Removed +- Python 3.6 is no longer supported. + ## [0.18.0] - 2022-01-17 ### Fixed - Callback are now executed as expected when there is a matching already sent response. @@ -205,7 +212,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added - First release, should be considered as unstable for now as design might change. -[Unreleased]: https://github.com/Colin-b/pytest_httpx/compare/v0.18.0...HEAD +[Unreleased]: https://github.com/Colin-b/pytest_httpx/compare/v0.19.0...HEAD +[0.19.0]: https://github.com/Colin-b/pytest_httpx/compare/v0.18.0...v0.19.0 [0.18.0]: https://github.com/Colin-b/pytest_httpx/compare/v0.17.3...v0.18.0 [0.17.3]: https://github.com/Colin-b/pytest_httpx/compare/v0.17.2...v0.17.3 [0.17.2]: https://github.com/Colin-b/pytest_httpx/compare/v0.17.1...v0.17.2 diff --git a/pytest_httpx/version.py b/pytest_httpx/version.py index 7b66864..c88fe1d 100644 --- a/pytest_httpx/version.py +++ b/pytest_httpx/version.py @@ -3,4 +3,4 @@ # Major should be incremented in case there is a breaking change. (eg: 2.5.8 -> 3.0.0) # Minor should be incremented in case there is an enhancement. (eg: 2.5.8 -> 2.6.0) # Patch should be incremented in case there is a bug fix. (eg: 2.5.8 -> 2.5.9) -__version__ = "0.18.0" +__version__ = "0.19.0" diff --git a/setup.py b/setup.py index e2fa16b..cca2ec0 100644 --- a/setup.py +++ b/setup.py @@ -27,7 +27,6 @@ "Natural Language :: English", "Programming Language :: Python", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", @@ -40,11 +39,11 @@ packages=find_packages(exclude=["tests*"]), package_data={"pytest_httpx": ["py.typed"]}, entry_points={"pytest11": ["pytest_httpx = pytest_httpx"]}, - install_requires=["httpx==0.21.*", "pytest==6.*"], + install_requires=["httpx==0.22.*", "pytest==6.*"], extras_require={ "testing": [ # Used to run async test functions - "pytest-asyncio==0.16.*", + "pytest-asyncio==0.17.*", # Used to check coverage "pytest-cov==3.*", ]