Skip to content
Open
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
2 changes: 2 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# SCM syntax highlighting & preventing 3-way merges
pixi.lock merge=binary linguist-language=YAML linguist-generated=true -diff
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -39,3 +39,6 @@ test_short_report.html

# Test failures will dump the cluster state in here
test_cluster_dump/
# pixi environments
.pixi/*
!.pixi/config.toml
34 changes: 34 additions & 0 deletions pixi.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# This file is used by pixi-build in other projects (namely, dask/dask)
# to generate a conda package of distributed from git tip
[workspace]
channels = ["https://prefix.dev/conda-forge"]
platforms = ["linux-64", "osx-arm64", "win-64"]
preview = ["pixi-build"]

[package]
name = "distributed"
# FIXME work around poor pixi-build support for SCM versioning
version = "2099.0.0"

[package.build]
backend = { name = "pixi-build-python", version = "*" }
source.path = "."

[package.host-dependencies]
setuptools = "*"
setuptools-scm = "*"

[package.run-dependencies]
# Don't pin dask/dask here to avoid headaches
# when installing from git tip with pixi-build
dask-core = "*"
# Skip dependencies redundant with dask-core
jinja2 = ">=2.10.3"
locket = ">=1.0.0"
msgpack-python = ">=1.0.2"
psutil = ">=5.8.0"
sortedcontainers = ">=2.0.5"
tblib = ">=1.6.0,!=3.2.0,!=3.2.1"
tornado = ">=6.2.0"
urllib3 = ">=1.26.5"
zict = ">=3.0.0"
Loading