Skip to content

Commit

Permalink
change setuptools version spec
Browse files Browse the repository at this point in the history
  • Loading branch information
mdekstrand committed Dec 18, 2023
1 parent d1109c3 commit bc23ed5
Showing 1 changed file with 11 additions and 5 deletions.
16 changes: 11 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"
name = "binpickle"
description = "Optimized format for pickling binary data."
authors = [
{name="Michael Ekstrand", email="mdekstrand@drexel.edu"}
{ name = "Michael Ekstrand", email = "mdekstrand@drexel.edu" },
]
classifiers = [
"License :: OSI Approved :: MIT License",
Expand All @@ -21,7 +21,7 @@ readme = "README.md"
license = { file = "LICENSE.md" }
dynamic = ["version"]
dependencies = [
"msgpack >= 1.0", # p2c: -s msgpack-python
"msgpack >= 1.0", # p2c: -s msgpack-python
"numcodecs >= 0.12",
"typing-extensions ~= 4.8",
]
Expand All @@ -39,7 +39,7 @@ dev = [
"pyproject2conda",
"sphinx-autobuild",
"humanize ~=4.0",
"msgpack-types", # p2c: -p
"msgpack-types", # p2c: -p
"pandas-stubs",
]
test = [
Expand All @@ -64,7 +64,7 @@ GitHub = "https://github.com/lenskit/binpickle"
packages = ["binpickle"]

[tool.setuptools_scm]
version_scheme = "release-branch-semver"
version_scheme = "guess-next-dev"

# settings for generating conda environments for dev & CI, when needed
[tool.pyproject2conda]
Expand All @@ -83,7 +83,13 @@ exclude = [
]

[tool.ruff.lint.isort]
section-order = ["future", "standard-library", "third-party", "first-party", "local-folder"]
section-order = [
"future",
"standard-library",
"third-party",
"first-party",
"local-folder",
]

[tool.ruff.lint.isort.sections]
test = ["pytest", "hypothesis"]
Expand Down

0 comments on commit bc23ed5

Please sign in to comment.