Skip to content

Commit

Permalink
Merge pull request #177 from exonet/rja/bump-certbot
Browse files Browse the repository at this point in the history
Drop support for Python 3.7, 3.8 - Add support for 3.12, 3.13
  • Loading branch information
robbinjanssen authored Jan 7, 2025
2 parents 5ee1135 + 61833ee commit 1068498
Show file tree
Hide file tree
Showing 35 changed files with 1,263 additions and 2,371 deletions.
8 changes: 0 additions & 8 deletions .flake8

This file was deleted.

2 changes: 1 addition & 1 deletion .github/CODE_OF_CONDUCT.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
We as members, contributors, and leaders pledge to make participation in our
community a harassment-free experience for everyone, regardless of age, body
size, visible or invisible disability, ethnicity, sex characteristics, gender
identity and expression, level of experience, education, socio-economic status,
identity and expression, level of experience, education, socioeconomic status,
nationality, personal appearance, race, caste, color, religion, or sexual identity
and orientation.

Expand Down
38 changes: 0 additions & 38 deletions .github/dependabot.yml

This file was deleted.

2 changes: 1 addition & 1 deletion .github/labels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
description: "A breaking change for existing users."
- name: "bugfix"
color: ee0701
description: "Inconsistencies or issues which will cause a problem for users or implementors."
description: "Inconsistencies or issues which will cause a problem for users or implementers."
- name: "documentation"
color: 0052cc
description: "Solely about the documentation of the project."
Expand Down
67 changes: 67 additions & 0 deletions .github/renovate.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"timezone": "Europe/Amsterdam",
"schedule": [
"before 6am every weekday"
],
"rebaseWhen": "behind-base-branch",
"dependencyDashboard": true,
"labels": [
"dependencies"
],
"lockFileMaintenance": {
"enabled": true,
"automerge": true
},
"commitMessagePrefix": "⬆️",
"packageRules": [
{
"matchManagers": [
"poetry"
],
"addLabels": [
"python"
]
},
{
"matchManagers": [
"poetry"
],
"matchDepTypes": [
"dev"
],
"rangeStrategy": "pin"
},
{
"matchManagers": [
"poetry"
],
"matchUpdateTypes": [
"minor",
"patch"
],
"automerge": true
},
{
"matchManagers": [
"github-actions"
],
"addLabels": [
"github_actions"
],
"rangeStrategy": "pin",
"extractVersion": "^(?<version>v\\d+\\.\\d+\\.\\d+)$",
"versioning": "regex:^v(?<major>\\d+)(\\.(?<minor>\\d+)\\.(?<patch>\\d+))?$"
},
{
"matchManagers": [
"github-actions"
],
"matchUpdateTypes": [
"minor",
"patch"
],
"automerge": true
}
]
}
6 changes: 3 additions & 3 deletions .github/workflows/draft-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ name: Draft Release

on:
push:
branches:
- master
branches: [master]
workflow_dispatch:

jobs:
update-release-draft:
Expand All @@ -13,6 +13,6 @@ jobs:

steps:
- name: Run release drafter
uses: release-drafter/release-drafter@3f0f87098bd6b5c5b9a36d49c41d998ea58f9348 #6.0.0
uses: release-drafter/release-drafter@v6.0.0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Loading

0 comments on commit 1068498

Please sign in to comment.