From 3c4c41529e05e4f75ef757d2ab76d74afd5efa45 Mon Sep 17 00:00:00 2001 From: Ashia Zed Date: Fri, 29 Oct 2021 09:50:24 -0600 Subject: [PATCH] Fix max Django version requirement syntax (#251) --- CHANGELOG.md | 1 + requirements.txt | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a0550b63..54838a18 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ### Changed - Fix a simple typo in `bulk_create` disclaimer in docs +- Fix Django max version pin in requirements file [PR #251](https://github.com/model-bakers/model_bakery/pull/251) ### Removed diff --git a/requirements.txt b/requirements.txt index 671bac16..94bccca7 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1 +1 @@ -django>=2.2<4.0 +django>=2.2,<4.0