From 5d1564a7712f1a42da09a9cd13c9f089bfe9c474 Mon Sep 17 00:00:00 2001 From: Fletcher Chapin Date: Tue, 9 Sep 2025 16:07:37 -0700 Subject: [PATCH 1/3] Creating draft citation file without DOI --- CITATION.cff | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 CITATION.cff diff --git a/CITATION.cff b/CITATION.cff new file mode 100644 index 0000000..1937128 --- /dev/null +++ b/CITATION.cff @@ -0,0 +1,21 @@ +cff-version: 1.2.0 +message: "If this software has been useful in your research, we encourage you to cite it using the provided metadata." +authors: + - family-names: "Sakthivelu" + given-names: "Adhithyan" + orcid: "https://orcid.org/0000-0002-3826-8112" + - family-names: "Chapin" + given-names: "Fletcher T." + orcid: "https://orcid.org/0000-0002-2165-7963" + - family-names: "Bolorinos" + given-names: "Jose" + orcid: "https://orcid.org/0000-0002-3741-5483" + - family-names: "Mauter" + given-names: "Meagan S." + orcid: "https://orcid.org/0000-0002-4932-890X" +title: "Demand Response Events Simulator" +version: 0.4.0 +date-released: August 27, 2025 +type: software +doi: XX +url: "https://github.com/we3lab/dr-simulator" \ No newline at end of file From 27c6e90c27eb5bdeb28433f4b4eb040c0584f15a Mon Sep 17 00:00:00 2001 From: Fletcher Chapin Date: Tue, 9 Sep 2025 17:03:51 -0700 Subject: [PATCH 2/3] Adding DOI to CITATION.cff and README.rst --- CITATION.cff | 2 +- README.rst | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CITATION.cff b/CITATION.cff index 1937128..70ace40 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -17,5 +17,5 @@ title: "Demand Response Events Simulator" version: 0.4.0 date-released: August 27, 2025 type: software -doi: XX +doi: 10.5281/zenodo.17089047 url: "https://github.com/we3lab/dr-simulator" \ No newline at end of file diff --git a/README.rst b/README.rst index 5d63439..bde0502 100644 --- a/README.rst +++ b/README.rst @@ -1,7 +1,7 @@ Welcome to Demand Response Events Simulator =========================================== -|Build Status| |Documentation| |Coverage| +|Build Status| |Documentation| |Coverage| |DOI| Incentive Based DR Program: Overview ------------------------------------- @@ -82,3 +82,5 @@ Watch out for the upcoming release features: :target: https://we3lab.github.io/dr-simulator/ .. |Coverage| image:: https://codecov.io/gh/we3lab/dr-simulator/graph/badge.svg?token=HXGOYK8JCD :target: https://codecov.io/gh/we3lab/dr-simulator +.. |DOI| image:: https://zenodo.org/badge/754373870.svg + :target: https://doi.org/10.5281/zenodo.17089048 \ No newline at end of file From 51e8384423823c8f225c99ecb43f067a0f6359ec Mon Sep 17 00:00:00 2001 From: Fletcher Chapin Date: Tue, 9 Sep 2025 17:10:09 -0700 Subject: [PATCH 3/3] Fixing path error in GH Actions workflow --- .github/workflows/test-and-lint.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test-and-lint.yml b/.github/workflows/test-and-lint.yml index 4049b47..4acaef0 100644 --- a/.github/workflows/test-and-lint.yml +++ b/.github/workflows/test-and-lint.yml @@ -22,7 +22,7 @@ jobs: pip install .[test] - name: Test with pytest run: | - pytest dr_simulator/tests/ + pytest tests/ - name: Upload codecov uses: codecov/codecov-action@v1