summarylogtreecommitdiffstats
path: root/relax-structlog-version-constraints.patch
blob: 12ec7c37febae36abe2be397e032670ede9a931d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
From 4eb678f4d3a4f8c4cd7cf11fb1ba825028361fed Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?L=C3=A1szl=C3=B3=20V=C3=A1rady?= <laszlo.varady93@gmail.com>
Date: Wed, 27 Oct 2021 20:50:36 +0200
Subject: [PATCH] Relax structlog version constraints

https://www.structlog.org/en/stable/changelog.html

> Versions are year-based with a strict backward compatibility policy.
---
 PKG-INFO       | 2 +-
 pyproject.toml | 2 +-
 setup.py       | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/PKG-INFO b/PKG-INFO
index 3851bb5..2396429 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -30,7 +30,7 @@ Requires-Dist: prompt-toolkit (>=3.0.3,<4.0.0)
 Requires-Dist: pyxdg (>=0.26,<0.28)
 Requires-Dist: requests (>=2.22,<3.0)
 Requires-Dist: setuptools (>40.0)
-Requires-Dist: structlog (>=20.1,<21.2.0)
+Requires-Dist: structlog (>=20.1)
 Requires-Dist: toml (>=0.10,<0.11)
 Project-URL: Repository, https://github.com/vlaci/openconnect-sso
 Description-Content-Type: text/markdown
diff --git a/pyproject.toml b/pyproject.toml
index de7388a..4cc6159 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -29,7 +29,7 @@ keyring = ">=21.1, <24.0.0"
 prompt-toolkit = "^3.0.3"
 pyxdg = ">=0.26, <0.28"
 requests = "^2.22"
-structlog = ">=20.1, <21.2.0"
+structlog = ">=20.1"
 toml = "^0.10"
 setuptools = ">40.0"
 
diff --git a/setup.py b/setup.py
index 21dc95f..e9825a2 100644
--- a/setup.py
+++ b/setup.py
@@ -17,7 +17,7 @@ install_requires = \
  'pyxdg>=0.26,<0.28',
  'requests>=2.22,<3.0',
  'setuptools>40.0',
- 'structlog>=20.1,<21.2.0',
+ 'structlog>=20.1',
  'toml>=0.10,<0.11']
 
 extras_require = \
-- 
2.33.1