Skip to content

Commit

Permalink
chore: prep maintenance (#35)
Browse files Browse the repository at this point in the history

---------

Signed-off-by: Jan Kowalleck <jan.kowalleck@gmail.com>
  • Loading branch information
jkowalleck authored Dec 19, 2023
1 parent b444fd7 commit a5db923
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 4 deletions.
27 changes: 27 additions & 0 deletions .github/dependabot.yml
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
2 changes: 1 addition & 1 deletion CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@

# see https://docs.github.com/en/github/creating-cloning-and-archiving-repositories/about-code-owners

* @madpah
* @madpah @jkowalleck
5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 <paul.horton@owasp.org>"]
maintainers = ["Paul Horton <paul.horton@owasp.org>"]
maintainers = ["Jan Kowalleck <jan.kowalleck@gmail.com>"]
license = "Apache-2.0"
readme = "README.md"
homepage = "https://github.com/madpah/serializable"
Expand All @@ -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',
Expand All @@ -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 = [
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ minversion = 3.10
envlist =
flake8
mypy-{locked,lowest}
py{311,310,39,38,37}-{locked,lowest}
py{312,311,310,39,38,37}-{locked,lowest}
isolated_build = True
skip_missing_interpreters = True
usedevelop = False
Expand Down

0 comments on commit a5db923

Please sign in to comment.