-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
--------- Signed-off-by: Jan Kowalleck <[email protected]>
- Loading branch information
1 parent
b444fd7
commit a5db923
Showing
4 changed files
with
32 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file | ||
|
||
version: 2 | ||
updates: | ||
- package-ecosystem: 'github-actions' | ||
directory: '/' | ||
schedule: | ||
interval: 'weekly' | ||
day: 'saturday' | ||
labels: [ 'dependencies' ] | ||
commit-message: | ||
prefix: 'chore' ## prefix maximum string length of 15 | ||
include: 'scope' | ||
open-pull-requests-limit: 999 | ||
- package-ecosystem: 'pip' | ||
directory: '/' | ||
schedule: | ||
interval: 'weekly' | ||
day: 'saturday' | ||
allow: | ||
- dependency-type: 'all' | ||
versioning-strategy: 'auto' | ||
labels: [ 'dependencies' ] | ||
commit-message: | ||
prefix: 'chore' ## prefix maximum string length of 15 | ||
include: 'scope' | ||
open-pull-requests-limit: 999 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ name = "py-serializable" | |
version = "0.16.0" | ||
description = "Library for serializing and deserializing Python Objects to and from JSON and XML." | ||
authors = ["Paul Horton <[email protected]>"] | ||
maintainers = ["Paul Horton <[email protected]>"] | ||
maintainers = ["Jan Kowalleck <[email protected]>"] | ||
license = "Apache-2.0" | ||
readme = "README.md" | ||
homepage = "https://github.com/madpah/serializable" | ||
|
@@ -14,7 +14,7 @@ packages = [ | |
classifiers = [ | ||
# Trove classifiers - https://packaging.python.org/specifications/core-metadata/#metadata-classifier | ||
# Full list: https://pypi.python.org/pypi?%3Aaction=list_classifiers | ||
'Development Status :: 4 - Beta', | ||
'Development Status :: 5 - Production/Stable', | ||
'Intended Audience :: Developers', | ||
'Intended Audience :: Information Technology', | ||
'Topic :: Software Development', | ||
|
@@ -24,6 +24,7 @@ classifiers = [ | |
'Programming Language :: Python :: 3.9', | ||
'Programming Language :: Python :: 3.10', | ||
'Programming Language :: Python :: 3.11', | ||
'Programming Language :: Python :: 3.12', | ||
'Typing :: Typed' | ||
] | ||
keywords = [ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters