Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,11 @@ updates:
interval: "weekly"
day: "sunday"
time: "20:00"

- package-ecosystem: "pip"
directory: "automation"
schedule:
# Check for updates on Sunday, 8PM UTC
interval: "weekly"
day: "sunday"
time: "20:00"
4 changes: 2 additions & 2 deletions automation/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[build-system]
requires = [
# keep versions in sync with ../pyproject.toml
"setuptools==75.5.0",
"setuptools==77.0.3",
"setuptools_scm==8.1.0",
"setuptools_dynamic_dependencies @ git+https://github.com/beeware/setuptools_dynamic_dependencies",
]
Expand All @@ -11,7 +11,7 @@ build-backend = "setuptools.build_meta"
name = "x-briefcase-automation"
description = "A Briefcase plugin for CI automation."
readme = "README.md"
license.text = "New BSD"
license = "BSD-3-Clause"
classifiers = ["Private :: Do Not Upload"]
dynamic = ["version", "dependencies"]

Expand Down
1 change: 1 addition & 0 deletions changes/2207.misc.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Updated setuptools from 76.0.0 to 77.0.3.
8 changes: 5 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[build-system]
requires = [
# keep versions in sync with automation/pyproject.toml
"setuptools==76.0.0",
"setuptools==77.0.3",
"setuptools_scm==8.2.0",
]
build-backend = "setuptools.build_meta"
Expand All @@ -12,7 +12,10 @@ name = "briefcase"
description = "Tools to support converting a Python project into a standalone native application."
readme = "README.rst"
requires-python = ">= 3.9"
license.text = "New BSD"
license = "BSD-3-Clause"
license-files = [
"LICENSE",
]
authors = [
{name="Russell Keith-Magee", email="[email protected]"},
]
Expand Down Expand Up @@ -45,7 +48,6 @@ keywords = [
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
Expand Down