Skip to content

Commit

Permalink
Limit iminuit to versions < 2
Browse files Browse the repository at this point in the history
Iminuit's developers released version 2 late 2020, and it's a major
overhaul from the previous version 1. It's a major change that will
require major change inside PyPWA to support. In the meantime I have
the setup.py set to exclude version 2.
  • Loading branch information
markjonestx committed Feb 11, 2021
1 parent 6667cf4 commit fb9d61a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@
"install_requires": [
"cython", # C/C++ Optimizations
"tqdm", # Progress Bars
"iminuit", # Default minimizer
"iminuit<2", # Default minimizer
"scipy", # Needed for Nestle with multiple ellipsoids.
"numpy", # Arrays and optimizations
"pyyaml", # YAML Parser
Expand Down

0 comments on commit fb9d61a

Please sign in to comment.