Skip to content

Commit 74a1a52

Browse files
authored
Merge branch 'main' into timkpaine-patch-2
2 parents 5be8a21 + 632c2a8 commit 74a1a52

File tree

3 files changed

+9
-15
lines changed

3 files changed

+9
-15
lines changed

MANIFEST.in

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,21 @@
11
graft python_template
2-
graft python_template/tests
32

43
include LICENSE
54
include README.md
6-
include CONTRIBUTING.md
7-
8-
include .bumpversion.cfg
9-
include pyproject.toml
10-
include Makefile
115

126
prune docs
137
prune .vscode
148
prune .github
159

16-
# test and lint assets
1710
prune .pytest_cache
1811
prune .ruff_cache
1912
prune .mypy_cache
2013

14+
exclude CONTRIBUTING.md
15+
exclude .bumpversion.cfg
16+
exclude pyproject.toml
17+
exclude Makefile
18+
2119
exclude .gitignore
2220
exclude .gitattributes
2321

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ major: ## bump a major version
9696
.PHONY: dist dist-build dist-sdist dist-local-wheel publish
9797

9898
dist-build: # build python dists
99-
python setup.py sdist bdist_wheel
99+
python -m build -w -s
100100

101101
dist-check: ## run python dist checker with twine
102102
python -m twine check dist/*

pyproject.toml

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
11
[build-system]
2-
requires = [
3-
"setuptools",
4-
"setuptools-scm",
5-
"wheel",
6-
]
2+
requires = ["setuptools", "wheel"]
73
build-backend="setuptools.build_meta"
84

95
[project]
@@ -13,7 +9,7 @@ description="A pure-python project template"
139
readme = "README.md"
1410
license = { text = "Apache-2.0" }
1511
version = "0.1.0"
16-
requires-python = ">=3.7"
12+
requires-python = ">=3.8"
1713
keywords = [
1814
"some",
1915
"keywords",
@@ -24,11 +20,11 @@ classifiers = [
2420
"Programming Language :: Python :: Implementation :: CPython",
2521
"Programming Language :: Python :: Implementation :: PyPy",
2622
"Programming Language :: Python :: 3",
27-
"Programming Language :: Python :: 3.7",
2823
"Programming Language :: Python :: 3.8",
2924
"Programming Language :: Python :: 3.9",
3025
"Programming Language :: Python :: 3.10",
3126
"Programming Language :: Python :: 3.11",
27+
"Programming Language :: Python :: 3.12",
3228
]
3329

3430
dependencies = [

0 commit comments

Comments
 (0)