-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
32 changed files
with
10,912 additions
and
572 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
--- | ||
version: 2 | ||
updates: | ||
- package-ecosystem: github-actions | ||
directory: / | ||
schedule: | ||
# Check for updates to GitHub Actions every week | ||
interval: monthly | ||
groups: | ||
dependencies: | ||
patterns: | ||
- '*' |
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 |
---|---|---|
@@ -1,8 +1,12 @@ | ||
--- | ||
version: 2 | ||
build: | ||
image: latest | ||
python: | ||
version: 3.8 | ||
os: ubuntu-22.04 | ||
tools: | ||
python: mambaforge-4.10 | ||
conda: | ||
environment: docs/rtd_environment.yml | ||
sphinx: | ||
builder: html | ||
configuration: docs/source/conf.py | ||
fail_on_warning: false |
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,36 @@ | ||
--- | ||
yaml-files: | ||
- '*.yaml' | ||
- '*.yml' | ||
- .yamllint | ||
rules: | ||
braces: enable | ||
brackets: enable | ||
colons: enable | ||
commas: enable | ||
comments: | ||
level: warning | ||
comments-indentation: | ||
level: warning | ||
document-end: disable | ||
document-start: | ||
level: warning | ||
empty-lines: enable | ||
empty-values: disable | ||
float-values: disable | ||
hyphens: enable | ||
indentation: {spaces: 2} | ||
key-duplicates: enable | ||
key-ordering: disable | ||
line-length: | ||
max: 88 | ||
allow-non-breakable-words: true | ||
allow-non-breakable-inline-mappings: false | ||
new-line-at-end-of-file: enable | ||
new-lines: | ||
type: unix | ||
octal-values: disable | ||
quoted-strings: disable | ||
trailing-spaces: enable | ||
truthy: | ||
level: warning |
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,37 +1,36 @@ | ||
Changes | ||
======= | ||
# Changes | ||
|
||
This is a record of all past dags releases and what went into them in reverse | ||
chronological order. We follow `semantic versioning <https://semver.org/>`_ and all | ||
releases are available on `Anaconda.org | ||
<https://anaconda.org/OpenSourceEconomics/dags>`_. | ||
chronological order. We follow [semantic versioning](https://semver.org/) and all | ||
releases are available on [conda-forge](https://anaconda.org/conda-forge/dags). | ||
|
||
## 0.??? | ||
|
||
0.2.2 - 2022-xx-xx | ||
------------------ | ||
- :gh:`19` Update infrastructure, move to Pixi (:ghuser:`timmens`). | ||
- :gh:`17` Add possibility to use namespaces (:ghuser:`lars-reimann`, :ghuser:`MImmesberger`). | ||
|
||
## 0.2.3 | ||
|
||
- :gh:`9` Add function to return the DAG. Check for cycles in DAG. | ||
(:ghuser:`ChristianZimpelmann`) | ||
|
||
## 0.2.2 | ||
|
||
- :gh:`5` Updates examples used in tests (:ghuser:`janosg`) | ||
- :gh:`7` improves the examples in the test cases. | ||
- :gh:`10` turns ``targets`` into an optional argument. All variables in the DAG are | ||
returned by default. | ||
- :gh:`9` Add function to return the DAG. Check for cycles in DAG. | ||
(:ghuser:`ChristianZimpelmann`) | ||
returned by default. (:ghuser:`tobiasraabe`) | ||
|
||
0.2.1 - 2022-03-29 | ||
------------------ | ||
## 0.2.1 | ||
|
||
- :gh:`4` Small fix in treatment of partialled arguments (:ghuser:`janosg`) | ||
|
||
|
||
0.2.0 - 2022-03-25 | ||
------------------ | ||
## 0.2.0 | ||
|
||
- :gh:`3` ignores partialled arguments when reading signatures (:ghuser:`janosg`) | ||
- :gh:`2` enforces signatures of generated functions, adds support for more output | ||
types and adds decorators to work with signatures (:ghuser:`janosg`) | ||
|
||
|
||
0.1.0 - 2022-03-08 | ||
------------------ | ||
## 0.1.0 | ||
|
||
- :gh:`1` releases the initial version of dags. |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.