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: kjd/idna
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v3.0
Choose a base ref
...
head repository: kjd/idna
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v3.1
Choose a head ref
  • 5 commits
  • 5 files changed
  • 4 contributors

Commits on Jan 1, 2021

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    6bd89af View commit details
  2. Drop universal bdist_wheel option (#93)

    The wheel is not `universal` anymore since Python 2 support has been dropped.
    mayeut authored Jan 1, 2021

    Partially verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    We cannot verify signatures from co-authors, and some of the co-authors attributed to this commit require their commits to be signed.
    Copy the full SHA
    8403413 View commit details
  3. Include license in pypi tarball (#92)

    Needed for conda-forge packaging
    jschueller authored Jan 1, 2021
    Copy the full SHA
    47bc65e View commit details
  4. Update history with recent PRs

    kjd committed Jan 1, 2021
    Copy the full SHA
    701239f View commit details

Commits on Jan 4, 2021

  1. Release v3.1

    kjd committed Jan 4, 2021
    Copy the full SHA
    8ba8151 View commit details
Showing with 18 additions and 3 deletions.
  1. +9 −0 .travis.yml
  2. +7 −0 HISTORY.rst
  3. +1 −0 MANIFEST.in
  4. +1 −1 idna/package_data.py
  5. +0 −2 setup.cfg
9 changes: 9 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
language: python
arch:
- amd64
- ppc64le
python:
- "3.4"
- "3.5"
@@ -7,6 +10,12 @@ python:
- "3.8"
- "3.9"
- "pypy3"
# Disable unsuported version pypy for ppc64le
jobs:
exclude:
- arch: ppc64le
python: pypy3

install:
- pip install .
script:
7 changes: 7 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
@@ -3,6 +3,13 @@
History
-------

3.1 (2021-01-04)
++++++++++++++++

- Ensure license is included in package (Thanks, Julien Schueller)
- No longer mark wheel has universal (Thanks, Matthieu Darbois)
- Test on PowerPC using Travis CI

3.0 (2021-01-01)
++++++++++++++++

1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
include *.rst
include LICENSE.md
recursive-include tools *
recursive-exclude tools *.pyc
recursive-include tests *
2 changes: 1 addition & 1 deletion idna/package_data.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version__ = '3.0'
__version__ = '3.1'

2 changes: 0 additions & 2 deletions setup.cfg

This file was deleted.