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: python-attrs/attrs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: dd26edd
Choose a base ref
...
head repository: python-attrs/attrs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 2de9014
Choose a head ref
  • 11 commits
  • 10 files changed
  • 5 contributors

Commits on Dec 28, 2021

  1. Start new development cycle

    hynek committed Dec 28, 2021
    Configuration menu
    Copy the full SHA
    421a9d3 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    ada66be View commit details
    Browse the repository at this point in the history

Commits on Dec 29, 2021

  1. docs: fix very minor typo (#894)

    Co-authored-by: kclark <kclark@autoverify.net>
    hkclark and kennedyclark authored Dec 29, 2021
    Configuration menu
    Copy the full SHA
    7695908 View commit details
    Browse the repository at this point in the history
  2. Use better word

    ref #894
    hynek committed Dec 29, 2021
    Configuration menu
    Copy the full SHA
    c86fbc8 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    9424a93 View commit details
    Browse the repository at this point in the history
  4. Use correct words

    hynek committed Dec 29, 2021
    Configuration menu
    Copy the full SHA
    ce50f40 View commit details
    Browse the repository at this point in the history
  5. Do not require cloudpickle for PyPy (#892)

    * Do not require cloudpickle for PyPy
    
    The cloudpickle package relies on CPython implementation details,
    and does not even import on PyPy:
    
    ```
    ImportError while importing test module '/tmp/attrs/tests/test_3rd_party.py'.
    Hint: make sure your test modules/packages have valid Python names.
    Traceback:
    /usr/lib/pypy3.8/importlib/__init__.py:127: in import_module
        return _bootstrap._gcd_import(name[level:], package, level)
    tests/test_3rd_party.py:7: in <module>
        import cloudpickle
    .tox/pypy3/lib/pypy3.8/site-packages/cloudpickle/__init__.py:4: in <module>
        from cloudpickle.cloudpickle import *  # noqa
    .tox/pypy3/lib/pypy3.8/site-packages/cloudpickle/cloudpickle.py:57: in <module>
        from .compat import pickle
    .tox/pypy3/lib/pypy3.8/site-packages/cloudpickle/compat.py:13: in <module>
        from _pickle import Pickler  # noqa: F401
    E   ModuleNotFoundError: No module named '_pickle'
    ```
    
    Disable the dependency for PyPy and make the test handle missing
    cloudpickle gracefully.
    
    * Enable testing on pypy-3.8
    
    * add a news entry
    
    Co-authored-by: Hynek Schlawack <hs@ox.cx>
    mgorny and hynek authored Dec 29, 2021
    Configuration menu
    Copy the full SHA
    03dd713 View commit details
    Browse the repository at this point in the history
  6. Make virtual repr file names unique (#896)

    * Make virtual repr file names unique
    
    * Add newsfragments
    hynek authored Dec 29, 2021
    Configuration menu
    Copy the full SHA
    0575d51 View commit details
    Browse the repository at this point in the history
  7. Minor changelog polish

    hynek committed Dec 29, 2021
    Configuration menu
    Copy the full SHA
    1ff3f1e View commit details
    Browse the repository at this point in the history
  8. Remove dead anchors

    hynek committed Dec 29, 2021
    Configuration menu
    Copy the full SHA
    02ba249 View commit details
    Browse the repository at this point in the history
  9. Prepare 21.4.0

    hynek committed Dec 29, 2021
    Configuration menu
    Copy the full SHA
    2de9014 View commit details
    Browse the repository at this point in the history
Loading