From 99b98ab1353801fc17486d494b07b4a58a02629b Mon Sep 17 00:00:00 2001
From: Pierre Raybaut
Date: Wed, 6 Nov 2024 16:44:42 +0100
Subject: [PATCH] Set Cython language level to 3 in histogram2d.pyx and
mandelbrot.pyx
---
src/histogram2d.pyx | 1 +
src/mandelbrot.pyx | 1 +
2 files changed, 2 insertions(+)
diff --git a/src/histogram2d.pyx b/src/histogram2d.pyx
index f5b7069..c26218b 100644
--- a/src/histogram2d.pyx
+++ b/src/histogram2d.pyx
@@ -1,3 +1,4 @@
+# cython: language_level=3
# -*- coding: utf-8 -*-
#
# Licensed under the terms of the BSD 3-Clause
diff --git a/src/mandelbrot.pyx b/src/mandelbrot.pyx
index 8877149..770906c 100644
--- a/src/mandelbrot.pyx
+++ b/src/mandelbrot.pyx
@@ -1,3 +1,4 @@
+# cython: language_level=3
# -*- coding: utf-8 -*-
#
# Licensed under the terms of the BSD 3-Clause