Technology Stack Modernization Dependency Management

Sub-skill of technology-stack-modernization: Dependency Management.

vamseeachanta a2238eb 632 B Updated

File contents

Dependency Management

Dependency Management

  1. Pin major versions, allow minor updates:

    # Good: Allows security updates
    dependencies = ["pandas>=2.0.0,<3.0.0"]
    
    # Bad: Too strict, misses security patches
    dependencies = ["pandas==2.0.0"]
    
  2. Test after each major update:

    • Update one package at a time
    • Run full test suite
    • Check for deprecation warnings
    • Validate outputs
  3. Document breaking changes:

    
    

vamseeachanta/workspace-hub/tree/main/.agents/skills/_archive/business/admin/technology-stack-modernization/dependency-management commit a2238eba55

Frequently asked questions

npx skillmds@latest add vamseeachanta/technology-stack-modernization-dependency-management