Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
pixi.lock merge=binary linguist-language=YAML linguist-generated=true
2 changes: 1 addition & 1 deletion .github/scripts/check-deps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ while read -r dependency; do
echo "${dependency} not found in pyproject.toml"
contains_dependency_all=false
fi
done < <(yq -r '.dependencies | to_entries | .[] | select(.key != "python") | "\(.key)\(.value)"' pixi.toml)
done < <(yq -r '.dependencies | to_entries | .[] | select(.key != "python") | select(.key != "pip") | "\(.key)\(.value)"' pixi.toml)

if [[ $contains_dependency_all == "false" ]]; then
exit 1
Expand Down
40 changes: 20 additions & 20 deletions pixi.lock
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Explicit dependencies

Dependency Before After Change Environments
conda-forge-metadata 0.11.0 0.12.0 Minor Upgrade all

Implicit dependencies

Dependency Before After Change Environments

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

12 changes: 5 additions & 7 deletions pixi.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[project]
[workspace]
name = "conda-metadata-app"
version = "0.1.0"
description = "A streamlit app to query metadata from conda packages"
Expand All @@ -13,23 +13,20 @@ schema = "python -m conda_metadata_app.app_config"
save-version-info = "python -m conda_metadata_app.version_info"
postinstall-production = "pip install --no-deps --disable-pip-version-check dist/conda_metadata_app-*.whl"


[dependencies]
python = "3.12.*"
pip = "*"
pydantic-settings = ">=2.4.0,<3"
pydantic = ">=2.8.2,<3"
typing-extensions = ">=4.12.2,<5"
zstandard = ">=0.23.0,<0.24"
py-rattler = ">=0.7.0,<0.8"
conda-forge-metadata = ">=0.11.0,<0.12"
conda-forge-metadata = ">=0.12.0,<0.13"
conda-package-streaming = ">=0.12.0,<0.13"
conda-oci-mirror = ">=0.2.3,<0.3"
streamlit = ">=1.44.0,<2"
streamlit-searchbox = "==0.1.20"

[host-dependencies]
pip = "*"

[feature.build.dependencies]
python-build = "*"
hatchling = "*"
Expand All @@ -41,6 +38,7 @@ build-wheel = "python -m build --no-isolation --wheel ."
pixi-pycharm = ">=0.0.6,<0.0.7"

[environments]
default = [] # includes default feature
# includes default feature
default = []
build = ["build"]
dev = { features = ["dev"], no-default-feature = true }
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ dependencies = [
"typing-extensions>=4.12.2,<5",
"zstandard>=0.23.0,<0.24",
"py-rattler>=0.7.0,<0.8",
"conda-forge-metadata>=0.11.0,<0.12",
"conda-forge-metadata>=0.12.0,<0.13",
"conda-package-streaming>=0.12.0,<0.13",
"conda-oci-mirror>=0.2.3,<0.3",
"streamlit>=1.44.0,<2",
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# this file is auto-generated, please make changes in pixi.toml instead
conda-forge-metadata==0.11.0
conda-forge-metadata==0.12.0
conda-oci-mirror==0.2.3
conda-package-streaming==0.12.0
pip==25.2
Expand Down