1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
Description: remove cython from hard dependencies.
This patch is applied to ensure the dependency does not get traslated into a
hard dependency in the binary package python3-brian.
Author: Étienne Mollier <emollier@debian.org>
Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1057983
Forwarded: not-needed
Last-Update: 2023-12-14
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- brian.orig/pyproject.toml
+++ brian/pyproject.toml
@@ -9,7 +9,6 @@
requires-python = '>=3.10'
dependencies = [
'numpy>=1.23.5',
- 'cython>=0.29.21',
'sympy>=1.2',
'pyparsing',
'jinja2>=2.7',
|