Thanks to visit codestin.com
Credit goes to github.com

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: ekalinin/nodeenv
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1.8.0
Choose a base ref
...
head repository: ekalinin/nodeenv
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 1.9.1
Choose a head ref
  • 14 commits
  • 11 files changed
  • 9 contributors

Commits on Oct 5, 2023

  1. Switch to packaging (#338)

    * Switch to packaging
    
    * install package
    
    * fix
    
    * support isolated builds
    flying-sheep authored Oct 5, 2023
    Configuration menu
    Copy the full SHA
    441de9c View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    eaa9de9 View commit details
    Browse the repository at this point in the history

Commits on May 28, 2024

  1. Fix Github Actions (#347)

    * workflows: add a workflow_dispatch trigger to start workflows manually
    
    To be able to manually run a workflow from the Github web interface, add
    a workflow_dispatch trigger.
    
    Note that this does only work once this change has hit the default
    branch.
    
    * workflow: remove python 2.7 testing
    
    Python 2.7 is long obsolete, deprecated and not supported any more.
    Remove it from the tests. This test job is especially supposed to run on
    ubuntu-20.04, which doesn't have Python 2.7 any more.
    
    Without this patch, this workflow fails with:
    
      Warning: The support for python 2.7 will be removed on June 19. Related issue: actions/setup-python#672
      Version 2.7 was not found in the local cache
      Error: The version '2.7' with architecture 'x64' was not found for Ubuntu 20.04.
      The list of all available versions can be found here: https://raw.githubusercontent.com/actions/python-versions/main/versions-manifest.json
    
    * setup.py: ignore flake8 warning about module import at top of file
    
    Flake8 is unhappy with us because we violate PEP8:
    
    rsc@leda:~/git/nodeenv$ flake8 --extend-ignore=E127 nodeenv.py tests setup.py
    setup.py:16:1: E402 module level import not at top of file
    
    Ignore this warning in this case.
    
    * nodeenv.py: do not compare types
    
    According to this flake8 error:
    
    (env) rsc@leda:~/git/nodeenv$ flake8 --extend-ignore=E127 nodeenv.py tests setup.py
    nodeenv.py:421:19: E721 do not compare types, for exact checks use `is` / `is not`, for instance checks use `isinstance()`
    
    we should not compare types but use isinstance() instead, which can
    handle subclasses as well.
    
    See https://www.flake8rules.com/rules/E721.html for details.
    rschwebel authored May 28, 2024
    Configuration menu
    Copy the full SHA
    bbffd9b View commit details
    Browse the repository at this point in the history
  2. Add Python 3.11 and 3.12 Test Coverage (#348)

    * workflows: add test coverage for Python 3.12
    
    Python 3.12 has been released for a while, add test coverage support in
    our workflows.
    
    * tox: add environment for Python 3.11
    
    Create a Python 3.11 test environment.
    
    * tox: add environment for Python 3.12
    
    Create a Python 3.12 test environment.
    rschwebel authored May 28, 2024
    Configuration menu
    Copy the full SHA
    3e574a5 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    dc114e1 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    de428ee View commit details
    Browse the repository at this point in the history
  5. On Python 3.3+, replace pipes.quote with shlex.quote (#342)

    * On Python 3.3+, replace pipes.quote with shlex.quote
    
    The pipes.quote() function was undocumented, and the pipes module was
    deprecated in Python 3.11 and will be removed in Python 3.13.
    
    Fixes #341.
    
    * Choose shlex or pipes based on Python version
    
    It was pointed out that pyupgrade can handle this better than
    try/except.
    musicinmybrain authored May 28, 2024
    Configuration menu
    Copy the full SHA
    c1dffc5 View commit details
    Browse the repository at this point in the history
  6. Fix tests after #342 (#354)

    * fix tests after #342
    
    * add coverage files into gitignore
    ekalinin authored May 28, 2024
    Configuration menu
    Copy the full SHA
    066a02c View commit details
    Browse the repository at this point in the history
  7. Remove usage of non-portable which (#346)

    * Use Python's shutil.which() instead of shelling out to `which` to find Python 2
    * Use `command -v` instead of `which` in README
    
    Fixes: #333
    thesamesam authored May 28, 2024
    Configuration menu
    Copy the full SHA
    1024f4f View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    5aaed3c View commit details
    Browse the repository at this point in the history
  9. 1.9.0

    ekalinin committed May 28, 2024
    Configuration menu
    Copy the full SHA
    2aa4a49 View commit details
    Browse the repository at this point in the history
  10. update AUTHORS

    ekalinin committed May 28, 2024
    Configuration menu
    Copy the full SHA
    9d74cd8 View commit details
    Browse the repository at this point in the history

Commits on Jun 4, 2024

  1. Configuration menu
    Copy the full SHA
    69e310a View commit details
    Browse the repository at this point in the history
  2. 1.9.1

    ekalinin committed Jun 4, 2024
    Configuration menu
    Copy the full SHA
    231431e View commit details
    Browse the repository at this point in the history
Loading