Skip to content
Draft
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/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`

Expand Down
3 changes: 1 addition & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 1 addition & 3 deletions src/requtests/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,4 @@
"fake_response",
"ParsedRequest",
]
__version__ = "1.2.0"

VERSION = __version__
__version__ = "2.0.0"