Skip to content

Commit cb764fd

Browse files
authored
1 parent 179e534 commit cb764fd

File tree

6 files changed

+9
-8
lines changed

6 files changed

+9
-8
lines changed

README.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,16 @@
22
Python C API compatibility
33
++++++++++++++++++++++++++
44

5-
.. image:: https://github.com/pythoncapi/pythoncapi_compat/actions/workflows/build.yml/badge.svg
5+
.. image:: https://github.com/python/pythoncapi_compat/actions/workflows/build.yml/badge.svg
66
:alt: Build status of pythoncapi_compat on GitHub Actions
7-
:target: https://github.com/pythoncapi/pythoncapi_compat/actions
7+
:target: https://github.com/python/pythoncapi_compat/actions
88

99
The ``pythoncapi_compat`` project can be used to write a C extension supporting
1010
a wide range of Python versions with a single code base. It is made of the
1111
``pythoncapi_compat.h`` header file and the ``upgrade_pythoncapi.py`` script.
1212

1313
* Homepage: `GitHub pythoncapi_compat project
14-
<https://github.com/pythoncapi/pythoncapi_compat>`_.
14+
<https://github.com/python/pythoncapi_compat>`_.
1515
* `Documentation
1616
<https://pythoncapi-compat.readthedocs.io/en/latest/>`_
1717

docs/api.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Some functions related to frame objects and ``PyThreadState`` are not available
2121
on PyPy.
2222

2323
Latest version of the header file:
24-
`pythoncapi_compat.h <https://raw.githubusercontent.com/pythoncapi/pythoncapi_compat/master/pythoncapi_compat.h>`_.
24+
`pythoncapi_compat.h <https://raw.githubusercontent.com/python/pythoncapi_compat/master/pythoncapi_compat.h>`_.
2525

2626

2727
Python 3.11

docs/changelog.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
Changelog
22
=========
33

4+
* 2022-03-03: The project moved to https://github.com/python/pythoncapi_compat
45
* 2022-02-11: The project license changes from the MIT license to the Zero
56
Clause BSD (0BSD) license. Projects copying ``pythoncapi_compat.h`` no longer
67
have to include the MIT license and the copyright notice.

docs/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ a wide range of Python versions with a single code base. It is made of the
77
``pythoncapi_compat.h`` header file and the ``upgrade_pythoncapi.py`` script.
88

99
* Homepage: `GitHub pythoncapi_compat project
10-
<https://github.com/pythoncapi/pythoncapi_compat>`_.
10+
<https://github.com/python/pythoncapi_compat>`_.
1111
* `Documentation
1212
<https://pythoncapi-compat.readthedocs.io/en/latest/>`_
1313

pythoncapi_compat.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
// Copyright Contributors to the pythoncapi_compat project.
55
//
66
// Homepage:
7-
// https://github.com/pythoncapi/pythoncapi_compat
7+
// https://github.com/python/pythoncapi_compat
88
//
99
// Latest version:
10-
// https://raw.githubusercontent.com/pythoncapi/pythoncapi_compat/master/pythoncapi_compat.h
10+
// https://raw.githubusercontent.com/python/pythoncapi_compat/master/pythoncapi_compat.h
1111
//
1212
// SPDX-License-Identifier: 0BSD
1313

upgrade_pythoncapi.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
FORCE_STEALREF = False
1111

1212

13-
PYTHONCAPI_COMPAT_URL = ('https://raw.githubusercontent.com/pythoncapi/'
13+
PYTHONCAPI_COMPAT_URL = ('https://raw.githubusercontent.com/python/'
1414
'pythoncapi_compat/master/pythoncapi_compat.h')
1515
PYTHONCAPI_COMPAT_H = 'pythoncapi_compat.h'
1616
INCLUDE_PYTHONCAPI_COMPAT = f'#include "{PYTHONCAPI_COMPAT_H}"'

0 commit comments

Comments
 (0)