Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: matplotlib/matplotlib
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: main
Choose a base ref
...
head repository: qsnake/matplotlib
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
  • 9 commits
  • 3 files changed
  • 2 contributors

Commits on May 7, 2011

  1. Add spkg-install

    certik committed May 7, 2011
    Configuration menu
    Copy the full SHA
    1411079 View commit details
    Browse the repository at this point in the history
  2. Remove old installation

    certik committed May 7, 2011
    Configuration menu
    Copy the full SHA
    0a34bf5 View commit details
    Browse the repository at this point in the history
  3. Allow to turn off graphical backends

    certik authored and minrk committed May 7, 2011
    Configuration menu
    Copy the full SHA
    ce6b970 View commit details
    Browse the repository at this point in the history
  4. working spkg-install on OSX

    minrk committed May 7, 2011
    Configuration menu
    Copy the full SHA
    d4aa964 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    ed91e91 View commit details
    Browse the repository at this point in the history

Commits on May 8, 2011

  1. Remove the patches directory

    One can easily see what changes were made by:
    
    git diff origin/v1.0.x..master
    
    so it's better not to duplicate things.
    certik committed May 8, 2011
    Configuration menu
    Copy the full SHA
    b1fda6e View commit details
    Browse the repository at this point in the history
  2. Document make.osx usage

    certik committed May 8, 2011
    Configuration menu
    Copy the full SHA
    aa512bd View commit details
    Browse the repository at this point in the history

Commits on May 13, 2011

  1. explicitly use system sed

    minrk committed May 13, 2011
    Configuration menu
    Copy the full SHA
    f1e31c0 View commit details
    Browse the repository at this point in the history
  2. Use sed syntax that works on all platforms

    Old syntax:
    
    sed -i .bak "s/^ARCH_FLAGS/#ARCH_FLAGS/" make.osx
    
    OSX: OK
    Linux: sed: -e expression #1, char 1: unknown command: `.'
    
    New syntax:
    
    sed -i.bak "s/^ARCH_FLAGS/#ARCH_FLAGS/" make.osx
    
    OSX: OK
    Linux: OK
    
    So the problem is just in the one whitespace. As such, instead of hardwiring
    the path to /usr/bin/sed, it's way better to use the sed that the user has
    installed, but with the right syntax, that works everywhere.
    certik committed May 13, 2011
    Configuration menu
    Copy the full SHA
    9c77564 View commit details
    Browse the repository at this point in the history
Loading