Skip to content

Commit

Permalink
chore: add setuptools dependency as azure-identity seems to need it…
Browse files Browse the repository at this point in the history
… on macos
  • Loading branch information
jslorrma committed Oct 20, 2024
1 parent 65580cb commit 93af60d
Show file tree
Hide file tree
Showing 2 changed files with 76 additions and 10 deletions.
69 changes: 68 additions & 1 deletion pixi.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 8 additions & 9 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,14 @@
name = "keyrings.artifacts"
description = "Keyring backend, that automatically retrieves credentials for Azure Artifacts."
authors = [{ name = "Jens Lorrmann", email = "jslorrma@gmail.com" }]
maintainers = [
{ name = "Jens Lorrmann", email = "jslorrma@gmail.com" },
]
maintainers = [{ name = "Jens Lorrmann", email = "jslorrma@gmail.com" }]
readme = "README.md"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
]
dynamic = ["version"]

Expand All @@ -29,6 +27,7 @@ dependencies = [
"azure-identity>=1.17.1",
"keyrings.alt>=5.0.0",
"pycryptodomex>=3.20.0",
"setuptools>=75.2.0,<76",
]

[tool.pixi.feature.dev.dependencies]
Expand Down Expand Up @@ -272,5 +271,5 @@ lint.ignore = [
# while int | float can be shortened to float, the former is more explicit
# "PYI041", # not yet implemented
# Checks for implicitly concatenated strings on a single line.
"ISC001"
"ISC001",
]

0 comments on commit 93af60d

Please sign in to comment.