Skip to content

Commit 108529f

Browse files
authored
Python 3.11 + Simplify Maintenance (#91)
* Create dependabot.yml * Remove Hardcoded __pypackages__ Ref * Update License Expression * Update Min Python Version * Update pdm.lock
1 parent a568e06 commit 108529f

4 files changed

Lines changed: 28 additions & 57 deletions

File tree

.github/dependabot.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "pip"
4+
directory: "/"
5+
schedule:
6+
interval: "daily"

.vscode/settings.json

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,20 +6,12 @@
66
"tests"
77
],
88
"python.formatting.provider": "black",
9-
"python.formatting.blackPath": "${workspaceRoot}/__pypackages__/3.10/Scripts/black",
109
"python.testing.unittestEnabled": false,
1110
"python.testing.pytestEnabled": true,
12-
"python.autoComplete.extraPaths": [
13-
"__pypackages__/3.10/lib"
14-
],
15-
"python.analysis.extraPaths": [
16-
"__pypackages__/3.10/lib"
17-
],
1811
"editor.formatOnSave": true,
1912
"editor.codeActionsOnSave": {
2013
"source.organizeImports": true
2114
},
2215
"python.linting.mypyEnabled": true,
23-
"mypy.dmypyExecutable": "${workspaceRoot}/__pypackages__/3.10/Scripts/dmypy",
2416
"mypy.runUsingActiveInterpreter": true
2517
}

pdm.lock

Lines changed: 20 additions & 47 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
description = "A Python management solution for C++ dependencies"
33
name = "cppython"
44

5-
license-expression = "MIT"
5+
license = "MIT"
66

77
authors = [
88
{name = "Synodic Software", email = "contact@synodic.software"},
@@ -11,7 +11,7 @@ readme = "README.md"
1111

1212
dynamic = ["version"]
1313

14-
requires-python = ">=3.10"
14+
requires-python = ">=3.11"
1515

1616
dependencies = [
1717
"click>=8.1.3",

0 commit comments

Comments
 (0)