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: jaraco/zipp
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v3.19.3
Choose a base ref
...
head repository: jaraco/zipp
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v3.20.0
Choose a head ref
  • 2 commits
  • 4 files changed
  • 1 contributor

Commits on Aug 11, 2024

  1. Copy the full SHA
    f7f1cb3 View commit details
  2. Finalize

    jaraco committed Aug 11, 2024
    Copy the full SHA
    c5a33b2 View commit details
Showing with 11 additions and 2 deletions.
  1. +9 −0 NEWS.rst
  2. +1 −1 tests/test_complexity.py
  3. +1 −1 tests/test_path.py
  4. 0 {tests → zipp}/compat/overlay.py
9 changes: 9 additions & 0 deletions NEWS.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
v3.20.0
=======

Features
--------

- Made the zipfile compatibility overlay available as zipp.compat.overlay.


v3.19.3
=======

2 changes: 1 addition & 1 deletion tests/test_complexity.py
Original file line number Diff line number Diff line change
@@ -4,7 +4,7 @@
import re
import string
import unittest
from .compat.overlay import zipfile
from zipp.compat.overlay import zipfile

from jaraco.functools import compose
from more_itertools import consume
2 changes: 1 addition & 1 deletion tests/test_path.py
Original file line number Diff line number Diff line change
@@ -6,7 +6,7 @@
import stat
import sys
import unittest
from .compat.overlay import zipfile
from zipp.compat.overlay import zipfile

from .compat.py39.os_helper import temp_dir, FakePath

File renamed without changes.