From cb42c9c6a48053c763e6e0f943e1d3f0e725df57 Mon Sep 17 00:00:00 2001 From: Adrian Lopez Date: Mon, 8 Jan 2024 07:33:47 +0100 Subject: [PATCH 1/3] Make code compatible with gcc 13 Fixed following the compiler note: note: 'uint32_t' is defined in header ''; did you forget to '#include '? --- youtokentome/cpp/utf8.h | 1 + 1 file changed, 1 insertion(+) diff --git a/youtokentome/cpp/utf8.h b/youtokentome/cpp/utf8.h index 0888bb3..47f1049 100644 --- a/youtokentome/cpp/utf8.h +++ b/youtokentome/cpp/utf8.h @@ -3,6 +3,7 @@ #include #include #include +#include namespace vkcom { From 5d1cc98977af94195d4575d4622fb8544ed62a04 Mon Sep 17 00:00:00 2001 From: Greg Burlet Date: Thu, 11 May 2023 12:59:16 -0600 Subject: [PATCH 2/3] poetry deps --- pyproject.toml | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..6b29d51 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,3 @@ +[build-system] +# Minimum requirements for the build system to execute. +requires = ["Cython>=0.29.34", "setuptools>=32.0.0"] From a6430bbe7b0b544202e9bc69e578931e81f8c749 Mon Sep 17 00:00:00 2001 From: Greg Burlet Date: Thu, 11 May 2023 13:10:16 -0600 Subject: [PATCH 3/3] bump pip requirements too --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 16d2c18..fb2bbd6 100644 --- a/requirements.txt +++ b/requirements.txt @@ -2,4 +2,4 @@ setuptools>=32.0.0 Click>=7.0 pytest==4.3.1 tabulate==0.8.5 -Cython==0.29.14 \ No newline at end of file +Cython>=0.29.34