8000 Comparing v0.20.1...v0.20.2 · pytest-dev/pytest-asyncio · GitHub
[go: up one dir, main page]

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: pytest-dev/pytest-asyncio
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.20.1
Choose a base ref
...
head repository: pytest-dev/pytest-asyncio
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.20.2
Choose a head ref
  • 8 commits
  • 7 files changed
  • 4 contributors

Commits on Nov 1, 2022

  1. Fix setuptools deprecation warning for license_file (#432)

    Use `license_files` instead of `license_file` in `setup.py` to fix
    the following warning:
    
    > The license_file parameter is deprecated, use license_files instead.
    mgorny authored Nov 1, 2022
    Configuration menu
    Copy the full SHA
    0ca201b View commit details
    Browse the repository at this point in the history
  2. Build(deps): Bump zipp from 3.9.0 to 3.10.0 in /dependencies/default (#…

    …434)
    
    Bumps [zipp](https://github.com/jaraco/zipp) from 3.9.0 to 3.10.0.
    - [Release notes](https://github.com/jaraco/zipp/releases)
    - [Changelog](https://github.com/jaraco/zipp/blob/main/CHANGES.rst)
    - [Commits](jaraco/zipp@v3.9.0...v3.10.0)
    
    ---
    updated-dependencies:
    - dependency-name: zipp
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Nov 1, 2022
    Configuration menu
    Copy the full SHA
    91e723a View commit details
    Browse the repository at this point in the history
  3. Build(deps): Bump hypothesis in /dependencies/default (#437)

    Bumps [hypothesis](https://github.com/HypothesisWorks/hypothesis) from 6.56.3 to 6.56.4.
    - [Release notes](https://github.com/HypothesisWorks/hypothesis/releases)
    - [Commits](HypothesisWorks/hypothesis@hypothesis-python-6.56.3...hypothesis-python-6.56.4)
    
    ---
    updated-dependencies:
    - dependency-name: hypothesis
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Nov 1, 2022
    Configuration menu
    Copy the full SHA
    28ba705 View commit details
    Browse the repository at this point in the history

Commits on Nov 10, 2022

  1. Bump to pytest 7.2.0 (#438)

    * refactor: Address deprecation of @pytest.mark.tryfirst.
    
    Signed-off-by: Michael Seifert <m.seifert@digitalernachschub.de>
    
    * test: Remove return value from test case.
    
    Return values in tests are deprecated starting from pytest 7.2 and will result in a warning.
    
    Signed-off-by: Michael Seifert <m.seifert@digitalernachschub.de>
    
    * build: Bump pytest to v7.2.0.
    
    Signed-off-by: Michael Seifert <m.seifert@digitalernachschub.de>
    
    Signed-off-by: Michael Seifert <m.seifert@digitalernachschub.de>
    seifertm authored Nov 10, 2022
    Configuration menu
    Copy the full SHA
    38fc032 View commit details
    Browse the repository at this point in the history

Commits on Nov 11, 2022

  1. Handle bound fixture methods correctly (#439)

    When the current test request references an instance, bind the fixture function to that instance. When the unittest flag is set, this happens unconditionally, otherwise only if:
    
    - the fixture wasn't bound already
    - the fixture is bound to a compatible instance (the request.instance object has the same type or is a subclass of that type).
    
    This follows what pytest does in such cases, exactly.
    mjpieters authored Nov 11, 2022
    Configuration menu
    Copy the full SHA
    fe63e34 View commit details
    Browse the repository at this point in the history
  2. Build(deps): Bump mypy from 0.982 to 0.990 in /dependencies/default (#…

    …440)
    
    Bumps [mypy](https://github.com/python/mypy) from 0.982 to 0.990.
    - [Release notes](https://github.com/python/mypy/releases)
    - [Commits](python/mypy@v0.982...v0.990)
    
    ---
    updated-dependencies:
    - dependency-name: mypy
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Nov 11, 2022
    Configuration menu
    Copy the full SHA
    d9faba8 View commit details
    Browse the repository at this point in the history
  3. Build(deps): Bump pytest-trio in /dependencies/default (#441)

    Bumps [pytest-trio](https://github.com/python-trio/pytest-trio) from 0.7.0 to 0.8.0.
    - [Release notes](https://github.com/python-trio/pytest-trio/releases)
    - [Commits](python-trio/pytest-trio@v0.7.0...v0.8.0)
    
    ---
    updated-dependencies:
    - dependency-name: pytest-trio
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Nov 11, 2022
    Configuration menu
    Copy the full SHA
    dc3ad21 View commit details
    Browse the repository at this point in the history
  4. Prepare release of v0.20.2.

    Signed-off-by: Michael Seifert <m.seifert@digitalernachschub.de>
    seifertm committed Nov 11, 2022
    Configuration menu
    Copy the full SHA
    07a1416 View commit details
    Browse the repository at this point in the history
Loading
0