-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #76 from vkottler/dev/1.6.0
Initial work on task factories
- Loading branch information
Showing
44 changed files
with
870 additions
and
366 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule config
updated
20 files
+1 −0 | .gitignore | |
+3 −0 | includes/yambs.yaml | |
+12 −0 | python/include.yaml | |
+72 −0 | python/mklocal/__init__.py | |
+24 −0 | python/mklocal/clean.py | |
+33 −0 | python/mklocal/env.py | |
+105 −0 | python/mklocal/prompts.py | |
+21 −0 | python/mklocal/yambs/__init__.py | |
+83 −0 | python/mklocal/yambs/base.py | |
+87 −0 | python/mklocal/yambs/coverage.py | |
+25 −0 | python/mklocal/yambs/gcov.py | |
+67 −0 | python/mklocal/yambs/run.py | |
+109 −0 | python/mklocal/yambs/test.py | |
+8 −0 | python/schemas/package.yaml | |
+10 −0 | python/templates/entry.py.j2 | |
+4 −0 | python/templates/pyproject.toml.j2 | |
+0 −12 | python/templates/python-package.yml.j2 | |
+23 −0 | python/yambs/include.yaml | |
+61 −0 | python/yambs/templates/native_tasks.py.j2 | |
+47 −0 | python/yambs/templates/yambs-project.yml.j2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ author_info: | |
name: Vaughn Kottler | ||
email: [email protected] | ||
username: vkottler | ||
versions: ["3.7", "3.8", "3.9", "3.10", "3.11"] | ||
versions: ["3.8", "3.9", "3.10", "3.11"] | ||
|
||
systems: | ||
- macos-latest | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
--- | ||
major: 1 | ||
minor: 5 | ||
patch: 4 | ||
minor: 6 | ||
patch: 0 | ||
entry: runtimepy |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,18 +4,17 @@ build-backend = "setuptools.build_meta:__legacy__" | |
|
||
[project] | ||
name = "runtimepy" | ||
version = "1.5.4" | ||
version = "1.6.0" | ||
description = "A framework for implementing Python services." | ||
readme = "README.md" | ||
requires-python = ">=3.7" | ||
requires-python = ">=3.8" | ||
authors = [ | ||
{name = "Vaughn Kottler", email = "[email protected]"} | ||
] | ||
maintainers = [ | ||
{name = "Vaughn Kottler", email = "[email protected]"} | ||
] | ||
classifiers = [ | ||
"Programming Language :: Python :: 3.7", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
--- | ||
includes: | ||
- has_factory.yaml | ||
- has_name.yaml | ||
|
||
properties: | ||
period_s: | ||
type: number | ||
default: 1.0 | ||
exclusiveMinimum: 0.0 | ||
|
||
average_depth: | ||
type: integer | ||
default: 10 | ||
minimum: 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
--- | ||
type: object | ||
required: [factory] | ||
additionalProperties: false | ||
|
||
properties: | ||
factory: | ||
type: string |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
--- | ||
required: [name] | ||
|
||
properties: | ||
name: | ||
type: string |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
""" | ||
A module implementing an interface extension to the base connection-arbiter so | ||
that methods that create connections can be registered by name. | ||
""" | ||
|
||
# internal | ||
from runtimepy.net.arbiter.factory.connection import ( | ||
ConnectionFactory, | ||
FactoryConnectionArbiter, | ||
) | ||
|
||
__all__ = ["ConnectionFactory", "FactoryConnectionArbiter"] |
Oops, something went wrong.