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
8 changes: 0 additions & 8 deletions .dockerignore

This file was deleted.

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
6 changes: 0 additions & 6 deletions .ruff.toml

This file was deleted.

3 changes: 0 additions & 3 deletions Cross.toml

This file was deleted.

Binary file removed demo_global.gif
Binary file not shown.
95 changes: 95 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,101 @@
format-command = "pixi run -e lint ruff format --stdin-filename {filename}"
test-dir = "tests/integration_python"

[tool.pytest.ini_options]
addopts = "--basetemp=pytest-temp --timeout=600 --durations=0"
tmp_path_retention_policy = "failed"
testpaths = ["tests/integration_python"]
markers = [
"slow: marks tests as slow",
"extra_slow: marks tests as extra slow",
]

[tool.ruff]
line-length = 100
target-version = "py313"

[tool.ruff.format]
indent-style = "space"
quote-style = "double"

[tool.tbump]
github_url = "https://github.com/prefix-dev/pixi"

[tool.tbump.version]
current = "0.67.2"

# Example of a semver regexp.
# Make sure this matches current_version before
# using tbump
regex = '''
(?P<major>\d+)
\.
(?P<minor>\d+)
\.
(?P<patch>\d+)
(rc
(?P<candidate>\d+)
)?
'''

[tool.tbump.git]
# The current version will get updated when tbump is run
message_template = "Bump version: {new_version}"
tag_template = "v{new_version}"

[[tool.tbump.file]]
src = "CITATION.cff"

[[tool.tbump.file]]
search = '^version = "{current_version}"'
src = "crates/pixi/Cargo.toml"

[[tool.tbump.file]]
search = "pixi-version: v{current_version}"
src = "docs/integration/ci/github_actions.md"

[[tool.tbump.file]]
search = "ARG PIXI_VERSION=v{current_version}"
src = "docs/integration/editor/vscode.md"

[[tool.tbump.file]]
search = "/pixi.sh/v{current_version}/"
src = "schema/schema.json"

[[tool.tbump.file]]
search = "/pixi.sh/v{current_version}/"
src = "schema/pyproject/schema.json"

[[tool.tbump.file]]
search = "Generated from `pixi` v{current_version}"
src = "schema/pyproject/partial-pixi.json"

[[tool.tbump.file]]
search = "Version: v{current_version}"
src = "install/install.sh"

[[tool.tbump.file]]
search = "Version: v{current_version}"
src = "install/install.ps1"

[[tool.tbump.file]]
search = "PIXI_VERSION = \"{current_version}\""
src = "tests/integration_python/common.py"

[[tool.tbump.file]]
search = "None => \"{current_version}\","
src = "crates/pixi_consts/src/consts.rs"

[[tool.tbump.file]]
search = "ghcr.io/prefix-dev/pixi:{current_version}"
src = "docs/deployment/container.md"

[[tool.tbump.field]]
# the name of the field
name = "candidate"
# the default value to use, if there is no match
default = ""

[tool.basedpyright]
ignore = [
"**/*.ipynb",
Expand Down
7 changes: 0 additions & 7 deletions pytest.ini

This file was deleted.

76 changes: 0 additions & 76 deletions tbump.toml

This file was deleted.

Loading