Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ENH: Add require argument to load() to accept version specifiers #48

Merged
merged 9 commits into from
Jan 30, 2024

Commits on Jan 26, 2024

  1. Configuration menu
    Copy the full SHA
    ea7eced View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    da8154d View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    94e6465 View commit details
    Browse the repository at this point in the history
  4. ENH: Delay loading of less likely modules

    Using python -X importtime -c "import lazy_loader":
    
    Before
    ------
    import time: self [us] | cumulative | imported package
    [...]
    import time:       131 |      22995 | lazy_loader
    
    After
    -----
    import time: self [us] | cumulative | imported package
    [...]
    import time:       115 |       4248 | lazy_loader
    effigies committed Jan 26, 2024
    Configuration menu
    Copy the full SHA
    add4bfe View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    bba2603 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    a557fb4 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    ba248f9 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    1788203 View commit details
    Browse the repository at this point in the history
  9. Update README.md

    Co-authored-by: Dan Schult <dschult@colgate.edu>
    effigies and dschult committed Jan 26, 2024
    Configuration menu
    Copy the full SHA
    15a1d1a View commit details
    Browse the repository at this point in the history