Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/python-lib-snapshot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,6 @@ on:
jobs:
run:
uses: zepben/.github/.github/workflows/python-lib-snapshot.yml@main
with:
product-key: "python-sdk"
secrets: inherit
15 changes: 15 additions & 0 deletions docs/site-config/src/theme/GlobalTopContent.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
import React from 'react';

function GlobalTopContent() {
return (
<div style={{ backgroundColor: 'lightyellow', padding: '10px', textAlign: 'center' }}>
🚨 This is an important announcement! 🚨
<br/>
This documentation site is no longer actively maintained.
<br/>
For up-to-date documentation, see the new site at the <a href="https://zepben.github.io/evolve/docs/ewb-sdk-python/">EWB Python SDK</a> page.
</div>
);
}

export default GlobalTopContent;
16 changes: 16 additions & 0 deletions docs/site-config/src/theme/Layout/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
import React from 'react';
import OriginalLayout from '@theme-original/Layout';
import GlobalTopContent from '@theme/GlobalTopContent';

function Layout(props) {
return (
<div>
<GlobalTopContent />
<OriginalLayout {...props}>
{props.children}
</OriginalLayout>
</div>
);
}

export default Layout;
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

[project]
name = "zepben.ewb"
version = "1.1.0b13"
version = "1.1.0b14"
description = "Python SDK for interacting with the Energy Workbench platform"
readme = {file = "README.md", content-type = "text/markdown"}
license = "MPL-2.0"
Expand Down