Skip to content

Commit

Permalink
update project URLs (#107)
Browse files Browse the repository at this point in the history
  • Loading branch information
woodruffw authored Aug 1, 2024
1 parent 8ed6d8a commit ac7560d
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# abi3audit

<!--- @begin-badges@ --->
[![Tests](https://github.com/trailofbits/abi3audit/actions/workflows/tests.yml/badge.svg)](https://github.com/trailofbits/abi3audit/actions/workflows/tests.yml)
[![Tests](https://github.com/pypa/abi3audit/actions/workflows/tests.yml/badge.svg)](https://github.com/pypa/abi3audit/actions/workflows/tests.yml)
[![PyPI version](https://badge.fury.io/py/abi3audit.svg)](https://pypi.org/project/abi3audit)
[![Packaging status](https://repology.org/badge/tiny-repos/python:abi3audit.svg)](https://repology.org/project/python:abi3audit/versions)
<!--- @end-badges@ --->

*[Read our blog post about how we find bugs with `abi3audit`!](https://blog.trailofbits.com/2022/11/15/python-wheels-abi-abi3audit/)*
*[Read the Trail of Bits blog post about how we find bugs with `abi3audit`!](https://blog.trailofbits.com/2022/11/15/python-wheels-abi-abi3audit/)*

`abi3audit` scans Python extensions for `abi3` violations and inconsistencies.

Expand All @@ -15,6 +15,9 @@ package version histories.

![An animated demonstration of abi3audit in action](https://user-images.githubusercontent.com/3059210/194171233-a61a81d2-f2ed-4078-8988-903f996ba2e3.gif)

This project is maintained in part by [Trail of Bits](https://trailofbits.com).
This is not an official Trail of Bits product.

## Index

* [Motivation](#motivation)
Expand Down
2 changes: 1 addition & 1 deletion abi3audit/_audit.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
# A handpicked exclusion list of symbols that are not strictly in the limited API
# or stable ABI, but in practice always appear in ABI3-compatible code.
# Since they are not listed in CPython's `stable_abi.toml`, we maintain them here separately.
# For more information, see https://github.com/trailofbits/abi3audit/issues/85
# For more information, see https://github.com/pypa/abi3audit/issues/85
# and https://github.com/wjakob/nanobind/discussions/500 .
_ALLOWED_SYMBOLS: set[str] = {"Py_XDECREF"}

Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ requires-python = ">=3.8"

[project.urls]
Homepage = "https://pypi.org/project/abi3audit/"
Issues = "https://github.com/trailofbits/abi3audit/issues"
Source = "https://github.com/trailofbits/abi3audit"
Issues = "https://github.com/pypa/abi3audit/issues"
Source = "https://github.com/pypa/abi3audit"

[project.optional-dependencies]
test = ["pytest", "pytest-cov", "pretend", "coverage[toml]"]
Expand Down

0 comments on commit ac7560d

Please sign in to comment.