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

fix/rsyncdir deprecation #1

Closed
wants to merge 30 commits into from

Commits on Aug 14, 2020

  1. Update changelog. Close #422.

    ionelmc committed Aug 14, 2020
    Configuration menu
    Copy the full SHA
    2860709 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    da61b91 View commit details
    Browse the repository at this point in the history

Commits on Sep 5, 2020

  1. Update config.rst wrt ignored .coveragerc settings

    I took a while to figure out why coverage wasn't working correctly for our large project until yesterday, when I read the paragraph that called out the `.coveragerc` options that `pytest-cov` ignores.  
    
    This PR makes that part of the documentation "pop" a bit more.
    
    I considered moving it under "Caveats", but decided that that would mean rewriting "Caveats" to have two separate issues, rather than the one that it currently explains.
    PamelaM authored and ionelmc committed Sep 5, 2020
    Configuration menu
    Copy the full SHA
    87d8b0c View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    aeefc96 View commit details
    Browse the repository at this point in the history

Commits on Nov 4, 2020

  1. Inherit coverage context in subprocesses

    Signed-off-by: Bernát Gábor <bgabor8@bloomberg.net>
    gaborbernat authored and ionelmc committed Nov 4, 2020
    Configuration menu
    Copy the full SHA
    9887c9f View commit details
    Browse the repository at this point in the history

Commits on Jan 10, 2021

  1. Do not install empty console_scripts entry point

    The empty 'console_scripts' entry point serves no purpose, and it is
    rather unlikely for it to contain any script in the near future.  Its
    presence confuses Gentoo missing dependency checks.
    mgorny authored and ionelmc committed Jan 10, 2021
    Configuration menu
    Copy the full SHA
    151bbe3 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    7b9feca View commit details
    Browse the repository at this point in the history
  3. Update setup.py

    MatTerra authored and ionelmc committed Jan 10, 2021
    Configuration menu
    Copy the full SHA
    6592810 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    0eada98 View commit details
    Browse the repository at this point in the history

Commits on Jan 11, 2021

  1. Update test deps.

    ionelmc committed Jan 11, 2021
    Configuration menu
    Copy the full SHA
    4ce7ac3 View commit details
    Browse the repository at this point in the history
  2. Oops.

    ionelmc committed Jan 11, 2021
    Configuration menu
    Copy the full SHA
    42d7705 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    25eed21 View commit details
    Browse the repository at this point in the history

Commits on Jan 12, 2021

  1. Skip this on 3.8+

    ionelmc committed Jan 12, 2021
    Configuration menu
    Copy the full SHA
    a2493d5 View commit details
    Browse the repository at this point in the history
  2. Skip this on 3.8+

    ionelmc committed Jan 12, 2021
    Configuration menu
    Copy the full SHA
    d3c382a View commit details
    Browse the repository at this point in the history

Commits on Jan 17, 2021

  1. Update changelog.

    ionelmc committed Jan 17, 2021
    Configuration menu
    Copy the full SHA
    5f935d5 View commit details
    Browse the repository at this point in the history
  2. Fix link name.

    ionelmc committed Jan 17, 2021
    Configuration menu
    Copy the full SHA
    bd7e850 View commit details
    Browse the repository at this point in the history

Commits on Jan 18, 2021

  1. Configuration menu
    Copy the full SHA
    b45388d View commit details
    Browse the repository at this point in the history

Commits on Jan 19, 2021

  1. Fix custom commands with newer setuptools

    Fix custom commands to handle additional arguments to the run() method.
    This is needed with newer versions of setuptools since they've started
    passing 'show_deprecation' kwarg in easy_install command, and this
    resulted in the following error:
    
    ```
    Traceback (most recent call last):
      File "/tmp/pytest-cov/./setup.py", line 86, in <module>
        setup(
      File "/usr/lib/python3.9/site-packages/setuptools/__init__.py", line 153, in setup
        return distutils.core.setup(**attrs)
      File "/usr/lib/python3.9/distutils/core.py", line 148, in setup
        dist.run_commands()
      File "/usr/lib/python3.9/distutils/dist.py", line 966, in run_commands
        self.run_command(cmd)
      File "/usr/lib/python3.9/distutils/dist.py", line 985, in run_command
        cmd_obj.run()
      File "/usr/lib/python3.9/site-packages/setuptools/command/install.py", line 67, in run
        self.do_egg_install()
      File "/usr/lib/python3.9/site-packages/setuptools/command/install.py", line 117, in do_egg_install
        cmd.run(show_deprecation=False)
    TypeError: run() got an unexpected keyword argument 'show_deprecation'
    ```
    
    While at it, future-proof all overriden commands to accept pass any
    arguments through.
    mgorny authored and ionelmc committed Jan 19, 2021
    Configuration menu
    Copy the full SHA
    d39de1e View commit details
    Browse the repository at this point in the history

Commits on Jan 20, 2021

  1. Update changelog.

    ionelmc committed Jan 20, 2021
    Configuration menu
    Copy the full SHA
    51f1f2b View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    5e1913e View commit details
    Browse the repository at this point in the history

Commits on Mar 4, 2021

  1. Configuration menu
    Copy the full SHA
    c2dfa77 View commit details
    Browse the repository at this point in the history

Commits on Mar 24, 2021

  1. Added toml as extra (#410)

    * added toml extra
    
    * Update AUTHORS.rst
    
    * Update CHANGELOG.rst
    
    * chain toml dependency to coverage's toml dependency
    
    Co-authored-by: Thomas Grainger <tagrain@gmail.com>
    
    * move coverage's toml dependency from extras to install_requires
    
    * udpate changelog phrase
    
    Co-authored-by: Thomas Grainger <tagrain@gmail.com>
    Cielquan and graingert committed Mar 24, 2021
    Configuration menu
    Copy the full SHA
    daf54e7 View commit details
    Browse the repository at this point in the history

Commits on May 12, 2021

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

Commits on May 13, 2021

  1. Fix version value. Fixes #468.

    ionelmc committed May 13, 2021
    Configuration menu
    Copy the full SHA
    f5a4d7e View commit details
    Browse the repository at this point in the history

Commits on May 14, 2021

  1. Configuration menu
    Copy the full SHA
    f2ee249 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    62d2e94 View commit details
    Browse the repository at this point in the history
  3. Update changelog.

    ionelmc committed May 14, 2021
    Configuration menu
    Copy the full SHA
    f533121 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    9692bad View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    297965e View commit details
    Browse the repository at this point in the history

Commits on Oct 26, 2022

  1. Remove use of rsyncdir

    Fixes: #557
    ssbarnea committed Oct 26, 2022
    Configuration menu
    Copy the full SHA
    0242835 View commit details
    Browse the repository at this point in the history