Skip to content

Commit 4c76a1f

Browse files
authored
Merge pull request #244 from polywrap/dev
prep 0.1.0b6 (attempt 3) | /workflows/cd
2 parents 4d1ea2b + 5cabe5d commit 4c76a1f

File tree

7 files changed

+11
-494
lines changed

7 files changed

+11
-494
lines changed

.readthedocs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ build:
1111
tools:
1212
python: "3.10"
1313
# You can also specify other tool versions:
14-
# nodejs: "19"
14+
nodejs: "18"
1515
# rust: "1.64"
1616
# golang: "1.19"
1717
jobs:

docs/source/conf.py

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,13 +42,17 @@
4242

4343
root_dir = os.path.join(os.path.dirname(__file__), "..", "..")
4444

45-
sys_config_dir = os.path.join(root_dir, "packages", "config-bundles", "polywrap-sys-config-bundle")
46-
subprocess.check_call(["yarn", "codegen"], cwd=sys_config_dir)
45+
fs_plugin_dir = os.path.join(root_dir, "packages", "plugins", "polywrap-fs-plugin")
46+
http_plugin_dir = os.path.join(root_dir, "packages", "plugins", "polywrap-http-plugin")
47+
ethereum_plugin_dir = os.path.join(root_dir, "packages", "plugins", "polywrap-ethereum-provider")
48+
49+
subprocess.check_call(["npm", "install", "-g", "yarn"], cwd=root_dir)
50+
subprocess.check_call(["yarn", "codegen"], cwd=fs_plugin_dir)
51+
subprocess.check_call(["yarn", "codegen"], cwd=http_plugin_dir)
52+
subprocess.check_call(["yarn", "codegen"], cwd=ethereum_plugin_dir)
4753

4854
shutil.rmtree(os.path.join(root_dir, "docs", "source", "misc"), ignore_errors=True)
4955
shutil.copytree(os.path.join(root_dir, "misc"), os.path.join(root_dir, "docs", "source", "misc"))
5056

51-
subprocess.check_call(["python", "scripts/extract_readme.py"], cwd=os.path.join(root_dir, "packages", "polywrap-client"))
5257
shutil.copy2(os.path.join(root_dir, "packages", "polywrap-client", "README.rst"), os.path.join(root_dir, "docs", "source", "Quickstart.rst"))
53-
5458
shutil.copy2(os.path.join(root_dir, "CONTRIBUTING.rst"), os.path.join(root_dir, "docs", "source", "CONTRIBUTING.rst"))

packages/plugins/polywrap-http-plugin/.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,5 @@
22
**/.pytest_cache/
33
**/dist/
44
**/node_modules/
5-
**/.tox/
5+
**/.tox/
6+
wrap/

packages/plugins/polywrap-http-plugin/polywrap_http_plugin/wrap/__init__.py

Lines changed: 0 additions & 6 deletions
This file was deleted.

packages/plugins/polywrap-http-plugin/polywrap_http_plugin/wrap/module.py

Lines changed: 0 additions & 53 deletions
This file was deleted.

packages/plugins/polywrap-http-plugin/polywrap_http_plugin/wrap/types.py

Lines changed: 0 additions & 73 deletions
This file was deleted.

0 commit comments

Comments
 (0)