Skip to content

Commit 73d497b

Browse files
Bump setuptools from 76.0.0 to 77.0.3 (#576)
Bumps [setuptools](https://github.com/pypa/setuptools) from 76.0.0 to 77.0.3. - [Release notes](https://github.com/pypa/setuptools/releases) - [Changelog](https://github.com/pypa/setuptools/blob/main/NEWS.rst) - [Commits](pypa/setuptools@v76.0.0...v77.0.3) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Russell Keith-Magee <russell@keith-magee.com>
1 parent 38d62fd commit 73d497b

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

changes/576.misc.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Updated setuptools from 76.0.0 to 77.0.3.

pyproject.toml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[build-system]
22
requires = [
3-
"setuptools==76.0.0",
3+
"setuptools==77.0.3",
44
"setuptools_scm==8.2.0",
55
]
66
build-backend = "setuptools.build_meta"
@@ -11,7 +11,10 @@ name = "rubicon-objc"
1111
description = "A bridge between an Objective C runtime environment and Python."
1212
readme = "README.rst"
1313
requires-python = ">= 3.9"
14-
license.text = "New BSD"
14+
license = "BSD-3-Clause"
15+
license-files = [
16+
"LICENSE",
17+
]
1518
authors = [
1619
{name="Russell Keith-Magee", email="russell@keith-magee.com"},
1720
]
@@ -26,7 +29,6 @@ keywords = [
2629
classifiers = [
2730
"Development Status :: 4 - Beta",
2831
"Intended Audience :: Developers",
29-
"License :: OSI Approved :: BSD License",
3032
"Programming Language :: Objective C",
3133
"Programming Language :: Python :: 3",
3234
"Programming Language :: Python :: 3.9",

src/rubicon/objc/runtime.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ class Class(objc_id):
194194

195195

196196
class IMP(c_void_p):
197-
"""The `IMP <https://developer.apple.com/documentation/objectivec/objective-c_runtime/imp?language=objc>`__
197+
"""The `IMP <https://developer.apple.com/documentation/objectivec/imp?language=objc>`__
198198
type from ``<objc/objc.h>``.
199199
200200
An :class:`IMP` cannot be called directly --- it must be cast to the

0 commit comments

Comments
 (0)