From 30f139e25cb377f6282b41a4c0d55eb55506cea6 Mon Sep 17 00:00:00 2001
From: Dantali0n <info@dantalion.nl>
Date: Mon, 10 Jul 2023 10:20:54 +0200
Subject: [PATCH] Fix testing by requiring recent tox version

---
 .gitlab-ci.yml | 1 +
 README.md      | 3 ++-
 tox.ini        | 2 +-
 3 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 283a70e..10b5302 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -3,6 +3,7 @@ default:
   # Make sure each step is executed in a virtual environment with some basic dependencies present
   before_script:
     - python --version # For debugging
+    - tox --version
   cache:
     paths:
       - .cache/pip
diff --git a/README.md b/README.md
index 1cbc13a..8ed6a9d 100644
--- a/README.md
+++ b/README.md
@@ -43,4 +43,5 @@ This project is licensed under the Apache License Version 2.0
 
 ## Releases
 
-- 0.1 - Initial release from separating into own repository
\ No newline at end of file
+- 0.2 - Ensure requirements.txt dependencies are installed
+- 0.1 - Initial release from separating into own repository
diff --git a/tox.ini b/tox.ini
index f8a25c0..a2899d8 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,7 +1,7 @@
 [tox]
 # Generative environment list to test all supported Python versions
 envlist = py3{7,8,9,10,11},black,pep8,pylint
-minversion = 3.28.0
+minversion = 4.3.3
 
 [testenv]
 usedevelop = True
-- 
GitLab