Update dependencies and author email in setup.py#41
Conversation
There was a problem hiding this comment.
Pull request overview
This PR updates the diffusers dependency from version 0.32.0 to 0.36.0 and changes the author email in setup.py. Additionally, the PR simplifies the dependency management by removing unused imports and helper functions that are no longer necessary since dependencies are now used directly from the _deps list.
Key Changes
- Updated
diffusersminimum version from 0.32.0 to 0.36.0 - Changed author email from subarucosmosmain@gmail.com to gt13579552@gmail.com
- Removed unnecessary code (imports
osandre,depsdictionary, anddeps_list()function) that was previously used for dependency parsing
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| @@ -1,21 +1,12 @@ | |||
| import os | |||
| import re | |||
| import sys | |||
There was a problem hiding this comment.
The PR description mentions updating the diffusers dependency version and changing the author email, but doesn't mention the removal of unused imports (os, re) and helper functions (deps_list, deps dictionary). While these removals are beneficial simplifications since the dependencies are now used directly via the _deps list, the PR description should be updated to reflect all changes made.
Update the
diffusersdependency version and change the author email insetup.py.