Skip to content

Commit

Permalink
define CMEEL_BUILD
Browse files Browse the repository at this point in the history
  • Loading branch information
nim65s committed Jan 3, 2025
1 parent 32750a2 commit 7cab9a3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

- define CMEEL_BUILD environment variable
- docker: default to python 3.13

## [v0.55.0] - 2025-01-03
Expand Down
1 change: 1 addition & 0 deletions cmeel/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ def __init__(self) -> None:
self.env = environ.copy()
else:
self.env = {p: environ[p] for p in ["PATH", "PYTHONPATH"]}
self.env["CMEEL_BUILD"] = "1"
self.jobs = int(self.conf.get("jobs", self.env.get("CMEEL_JOBS", "4")))
self.test_jobs = self.conf.get(
"test-jobs",
Expand Down

0 comments on commit 7cab9a3

Please sign in to comment.