Skip to content

Commit

Permalink
Release version 0.0.0.dev404
Browse files Browse the repository at this point in the history
  • Loading branch information
AAriam committed Dec 6, 2024
1 parent 0b1ec4c commit 7f34d8b
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ namespaces = true
# ----------------------------------------- Project Metadata -------------------------------------
#
[project]
version = "0.0.0.dev403"
version = "0.0.0.dev404"
name = "ControlMan"
dependencies = [
"packaging >= 23.2, < 24",
Expand Down
37 changes: 35 additions & 2 deletions src/controlman/_data/schema/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3461,10 +3461,10 @@ properties:
type: string
enum: [ auto, disabled ]
default: auto
docker:
binder:
type: object
additionalProperties: false
required: [ name, artifact, env, action ]
required: [ name, env, action, path ]
default: { }
properties:
name:
Expand Down Expand Up @@ -3503,6 +3503,37 @@ properties:
type: string
enum: [ auto, disabled ]
default: auto
path:
type: object
additionalProperties: false
required: [ config ]
properties:
config:
description: |
Path to the configuration directory
containing the environment files to build the docker image.
Note that this path cannot be the root directory, `.binder`, or `binder`.
default: .docker
$ref: https://jsonschemata.repodynamics.com/path/posix/absolute-from-cwd
dockerfile:
description: |
Path to configuration directory
containing the Dockerfile.
Note that this path can only be the root directory, `.binder`, or `binder`,
as these are the only locations recognized by `mybinder`.
type: string
enum: [ ".", ".binder", "binder" ]
if:
required: [ dockerfile ]
then:
not:
properties:
config:
enum: [ ".", ".binder", "binder" ]
else:
properties:
config:
enum: [ ".", ".binder", "binder" ]
image:
description: |
Refs:
Expand All @@ -3521,6 +3552,8 @@ properties:
org.opencontainers.image.title: '${{ name }}$ {{ version }}'
additionalProperties:
type: string
test_script:
type: string
publish:
type: object
additionalProperties: false
Expand Down

0 comments on commit 7f34d8b

Please sign in to comment.