Skip to content

Commit

Permalink
Merge branch 'master' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
tanbro committed Mar 11, 2024
2 parents 81358e3 + 209ddeb commit 7ef411b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
3 changes: 1 addition & 2 deletions .ruff.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
src = ["src"]
extend-exclude = ["docs"]
# Always generate Python 3.7-compatible code.
target-version = "py37"

line-length = 128

[lint]
Expand Down
10 changes: 7 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools>=61", "setuptools_scm>=6.2"]
requires = ["setuptools>=64", "setuptools_scm>=8"]

[project]
name = "mkdocs-nbconvert"
Expand All @@ -17,11 +17,15 @@ classifiers = [
"Topic :: Documentation",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dynamic = ["version"]

# requires python version
requires-python = ">=3.7"
# requires
dependencies = ["mkdocs>=1.4", "nbconvert>=4.2"]

Expand Down

0 comments on commit 7ef411b

Please sign in to comment.