diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 410b5b6..ebcacc4 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -16,7 +16,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ['3.8', '3.9', '3.10', '3.11', '3.12'] + python-version: ['3.9', '3.10', '3.11', '3.12'] steps: - uses: actions/checkout@v4 diff --git a/README.md b/README.md index 217e8a9..cffa650 100644 --- a/README.md +++ b/README.md @@ -10,8 +10,8 @@ Test helpers for the [requests](https://docs.python-requests.org) library ## Installation -Install the package `requtests` version `1.2+` from PyPI. -The recommended `requirements.txt` line is `requtests~=1.2`. +Install the package `requtests` version `2.0+` from PyPI. +The recommended `requirements.txt` line is `requtests~=2.0`. ### `FakeAdapter` diff --git a/setup.cfg b/setup.cfg index c839db1..1daa0c5 100644 --- a/setup.cfg +++ b/setup.cfg @@ -14,12 +14,11 @@ keywords = ["Requests Testing"] license = MIT long_description = file: README.md long_description_content_type = text/markdown -requires_python = ~=3.8 +requires_python = ~=3.9 classifiers = Development Status :: 5 - Production/Stable License :: OSI Approved :: MIT License Programming Language :: Python :: 3 - Programming Language :: Python :: 3.8 Programming Language :: Python :: 3.9 Programming Language :: Python :: 3.10 Programming Language :: Python :: 3.11 diff --git a/src/requtests/__init__.py b/src/requtests/__init__.py index 61dc647..8174955 100644 --- a/src/requtests/__init__.py +++ b/src/requtests/__init__.py @@ -27,6 +27,4 @@ "fake_response", "ParsedRequest", ] -__version__ = "1.2.0" - -VERSION = __version__ +__version__ = "2.0.0"