Skip to content

Commit 6cb27cf

Browse files
committed
update remaining project URLs
1 parent 177bdab commit 6cb27cf

7 files changed

Lines changed: 15 additions & 15 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ libraries in Python Wheel packages by providing the means to
77
replace an external build system (eg. Makefile) so that non-python
88
libraries to be built from source within the python ecosystem.
99

10-
- Documentation at https://mdavidsaver.github.io/setuptools_dso
11-
- Github project https://github.com/mdavidsaver/setuptools_dso
10+
- Documentation at https://epics-base.github.io/setuptools_dso
11+
- Github project https://github.com/epics-base/setuptools_dso
1212
- PYPI https://pypi.org/project/setuptools-dso/

documentation/index.rst

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@ provides at alternative to bundling externally built libraries in Python Wheel p
1111
This replaces an external build system (eg. Makefile),
1212
allowing non-python libraries to be built from source within a python ecosystem.
1313

14-
- `Issue tracker <https://github.com/mdavidsaver/setuptools_dso/issues>`_
14+
- `Issue tracker <https://github.com/epics-base/setuptools_dso/issues>`_
1515
- On `PYPI <https://pypi.org/project/setuptools-dso/>`_
16-
- `VCS repository <https://github.com/mdavidsaver/setuptools_dso>`_
17-
- Canonical `documentation <https://mdavidsaver.github.io/setuptools_dso>`_
18-
- `Example usage <https://github.com/mdavidsaver/setuptools_dso/tree/master/example>`_
16+
- `VCS repository <https://github.com/epics-base/setuptools_dso>`_
17+
- Canonical `documentation <https://epics-base.github.io/setuptools_dso>`_
18+
- `Example usage <https://github.com/epics-base/setuptools_dso/tree/master/example>`_
1919
- CI status |cistatus|
2020

21-
.. |cistatus| image:: https://github.com/mdavidsaver/setuptools_dso/workflows/setuptools-dso/badge.svg
22-
:target: https://github.com/mdavidsaver/setuptools_dso/actions
21+
.. |cistatus| image:: https://github.com/epics-base/setuptools_dso/workflows/setuptools-dso/badge.svg
22+
:target: https://github.com/epics-base/setuptools_dso/actions
2323
:alt: github actions status badge
2424

2525
.. toctree::

documentation/releasenotes.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ Release Notes
5151
---------------
5252

5353
* Avoid mutable default arguments
54-
* Workaround probable `bug <https://github.com/mdavidsaver/setuptools_dso/issues/23>`_ in `setuptools >= 63.4.3 <https://github.com/pypa/setuptools/issues/3591>`_
54+
* Workaround probable `bug <https://github.com/epics-base/setuptools_dso/issues/23>`_ in `setuptools >= 63.4.3 <https://github.com/pypa/setuptools/issues/3591>`_
5555

5656
2.5 (Jan 2022)
5757
--------------

documentation/usage.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ eg. ``export NUM_JOBS=1`` for a sequential build.
3030
Applying to your package
3131
========================
3232

33-
The `example/ <https://github.com/mdavidsaver/setuptools_dso/tree/master/example>`_ demonstrates building a non-python library,
33+
The `example/ <https://github.com/epics-base/setuptools_dso/tree/master/example>`_ demonstrates building a non-python library,
3434
and linking it with a python extension module.
3535

3636
pyproject.toml
@@ -72,7 +72,7 @@ Building a DSO
7272

7373
.. autoclass:: DSO
7474

75-
The `example source <https://github.com/mdavidsaver/setuptools_dso/tree/master/example/src>`_
75+
The `example source <https://github.com/epics-base/setuptools_dso/tree/master/example/src>`_
7676
files while make up the non-python ``demo`` library are: ``mylib.h``, ``foo.c``, ``bar.cpp``.
7777
This library will be expressed as a `setuptools_dso.DSO` object.
7878
The first argument is a directory path and library base name encoded like a python module.

example/namespaces/package-dso/testnsp/testdso/libtest.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
// Snippet more-or-less stolen from https://github.com/mdavidsaver/setuptools_dso/blob/master/example/src/dsodemo/lib/mylib.h
2+
// Snippet more-or-less stolen from https://github.com/epics-base/setuptools_dso/blob/master/example/src/dsodemo/lib/mylib.h
33
#ifdef _WIN32
44
#define EXPDECL __declspec(dllexport)
55
#elif __GNUC__ >= 4

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
long_description_content_type='text/markdown',
1717
url='https://github.com/mdavidsaver/setuptools_dso',
1818
project_urls={
19-
'Documentation':'https://mdavidsaver.github.io/setuptools_dso',
20-
'Release Notes':'https://mdavidsaver.github.io/setuptools_dso/releasenotes.html',
19+
'Documentation':'https://epics-base.github.io/setuptools_dso',
20+
'Release Notes':'https://epics-base.github.io/setuptools_dso/releasenotes.html',
2121
},
2222

2323
author='Michael Davidsaver',

src/setuptools_dso/compiler.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ def _has_dry_run():
3939

4040

4141
# workaround for https://github.com/pypa/setuptools/issues/3591
42-
# cf. https://github.com/mdavidsaver/setuptools_dso/issues/23
42+
# cf. https://github.com/epics-base/setuptools_dso/issues/23
4343
#
4444
# setuptools >=63.4.3
4545
# each call to CCompiler.compile(..., include_dirs=None) appends to the

0 commit comments

Comments
 (0)