blob: 6b02f52b0df475f329d7c62b94ac0011fa9ba1fd (
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
|
From 0cef432d12e18e5d3b5c0f3e839c263a01321db6 Mon Sep 17 00:00:00 2001
From: Jonas Witschel <diabonas@archlinux.org>
Date: Tue, 5 Apr 2022 16:11:47 +0200
Subject: [PATCH 1/4] pyproject.toml: only require 'future' for python <3.2
Commit 69cbba8839ad68420d55bd56833eb3e970ee6311 ("Only require 'future' for
python <3.2") should be reflected by pyproject.toml as well.
---
pyproject.toml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/pyproject.toml b/pyproject.toml
index a9aff03..709adf1 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -15,7 +15,7 @@ python = "^3.6"
pyOpenSSL = "^19.1.0"
webcolors = "^1.11.1"
atomicwrites = "^1.3.0"
-future = "^0.18.2"
+future = { version = "^0.18.2", python = "<3.2" }
attrs = "^19.3.0"
logbook = "^1.5.3"
pygments = "^2.6.1"
--
2.47.1
|