Skip to content

Commit

Permalink
pin symengine to <0.10.0 (#9857)
Browse files Browse the repository at this point in the history
* pin symengine

* Avoid specific version

(cherry picked from commit 03473bd)
  • Loading branch information
ElePT authored and mergify[bot] committed Apr 5, 2023
1 parent 7dc7a1c commit 689004d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,10 @@ sympy>=1.3
dill>=0.3
python-dateutil>=2.8.0
stevedore>=3.0.0
symengine>=0.9 ; platform_machine == 'x86_64' or platform_machine == 'aarch64' or platform_machine == 'ppc64le' or platform_machine == 'amd64' or platform_machine == 'arm64'
# symengine pinning needed due lowered precision handling complex
# multiplication in version 0.10 wich breaks parameter assignment test
# (can be removed once issue is fix)
symengine>=0.9, <0.10; platform_machine == 'x86_64' or platform_machine == 'aarch64' or platform_machine == 'ppc64le' or platform_machine == 'amd64' or platform_machine == 'arm64'
shared-memory38;python_version<'3.8'
typing-extensions; python_version < '3.8'
singledispatchmethod; python_version < '3.8'
Expand Down

0 comments on commit 689004d

Please sign in to comment.