lbt-grasshopper 1.9.20__tar.gz → 1.9.22__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {lbt_grasshopper-1.9.20 → lbt_grasshopper-1.9.22}/.github/workflows/dependency-release.yaml +54 -0
- {lbt_grasshopper-1.9.20 → lbt_grasshopper-1.9.22}/PKG-INFO +3 -2
- {lbt_grasshopper-1.9.20 → lbt_grasshopper-1.9.22}/dev-requirements.txt +3 -2
- {lbt_grasshopper-1.9.20 → lbt_grasshopper-1.9.22}/lbt_grasshopper.egg-info/PKG-INFO +3 -2
- {lbt_grasshopper-1.9.20 → lbt_grasshopper-1.9.22}/lbt_grasshopper.egg-info/requires.txt +2 -1
- {lbt_grasshopper-1.9.20 → lbt_grasshopper-1.9.22}/requirements.txt +2 -1
- {lbt_grasshopper-1.9.20 → lbt_grasshopper-1.9.22}/.github/workflows/ci.yaml +0 -0
- {lbt_grasshopper-1.9.20 → lbt_grasshopper-1.9.22}/.gitignore +0 -0
- {lbt_grasshopper-1.9.20 → lbt_grasshopper-1.9.22}/.releaserc.json +0 -0
- {lbt_grasshopper-1.9.20 → lbt_grasshopper-1.9.22}/CI_STATUS.md +0 -0
- {lbt_grasshopper-1.9.20 → lbt_grasshopper-1.9.22}/LICENSE +0 -0
- {lbt_grasshopper-1.9.20 → lbt_grasshopper-1.9.22}/README.md +0 -0
- {lbt_grasshopper-1.9.20 → lbt_grasshopper-1.9.22}/ci-requirements.txt +0 -0
- {lbt_grasshopper-1.9.20 → lbt_grasshopper-1.9.22}/deploy.sh +0 -0
- {lbt_grasshopper-1.9.20 → lbt_grasshopper-1.9.22}/gradients.png +0 -0
- {lbt_grasshopper-1.9.20 → lbt_grasshopper-1.9.22}/installer.gh +0 -0
- {lbt_grasshopper-1.9.20 → lbt_grasshopper-1.9.22}/lbt_grasshopper/README.md +0 -0
- {lbt_grasshopper-1.9.20 → lbt_grasshopper-1.9.22}/lbt_grasshopper.egg-info/SOURCES.txt +0 -0
- {lbt_grasshopper-1.9.20 → lbt_grasshopper-1.9.22}/lbt_grasshopper.egg-info/dependency_links.txt +0 -0
- {lbt_grasshopper-1.9.20 → lbt_grasshopper-1.9.22}/lbt_grasshopper.egg-info/top_level.txt +0 -0
- {lbt_grasshopper-1.9.20 → lbt_grasshopper-1.9.22}/pass_tests.py +0 -0
- {lbt_grasshopper-1.9.20 → lbt_grasshopper-1.9.22}/ruby-requirements.txt +0 -0
- {lbt_grasshopper-1.9.20 → lbt_grasshopper-1.9.22}/setup.cfg +0 -0
- {lbt_grasshopper-1.9.20 → lbt_grasshopper-1.9.22}/setup.py +0 -0
- {lbt_grasshopper-1.9.20 → lbt_grasshopper-1.9.22}/uninstaller.gh +0 -0
- {lbt_grasshopper-1.9.20 → lbt_grasshopper-1.9.22}/versioning/export_documentation.gh +0 -0
- {lbt_grasshopper-1.9.20 → lbt_grasshopper-1.9.22}/versioning/increment_components.gh +0 -0
|
@@ -139,6 +139,33 @@ jobs:
|
|
|
139
139
|
git commit -m "fix(deps): Bump dragonfly-grasshopper to $VERSION"
|
|
140
140
|
git push
|
|
141
141
|
|
|
142
|
+
bump_fairyfly_grasshopper:
|
|
143
|
+
name: "Check Event"
|
|
144
|
+
runs-on: ubuntu-latest
|
|
145
|
+
if: github.event.action == 'fairyfly_grasshopper_release'
|
|
146
|
+
steps:
|
|
147
|
+
- name: "Checkout Master Branch"
|
|
148
|
+
uses: actions/checkout@v2
|
|
149
|
+
with:
|
|
150
|
+
ref: refs/heads/master
|
|
151
|
+
token: ${{ secrets.DEPS_UPDATING }}
|
|
152
|
+
- name: "Run Update Script"
|
|
153
|
+
env:
|
|
154
|
+
VERSION: ${{ github.event.client_payload.version }}
|
|
155
|
+
run: |
|
|
156
|
+
export CLEAN_VERSION=$(echo $VERSION | sed 's/v//g')
|
|
157
|
+
sed -i --regexp-extended 's/(fairyfly-grasshopper==).*/fairyfly-grasshopper=='"$CLEAN_VERSION"'/' requirements.txt
|
|
158
|
+
- name: "Commit and Push Changes"
|
|
159
|
+
id: push
|
|
160
|
+
env:
|
|
161
|
+
VERSION: ${{ github.event.client_payload.version }}
|
|
162
|
+
run: |
|
|
163
|
+
git config --global user.name 'ladybugbot'
|
|
164
|
+
git config --global user.email 'ladybugbot@users.noreply.github.com'
|
|
165
|
+
git add .
|
|
166
|
+
git commit -m "fix(deps): Bump fairyfly-grasshopper to $VERSION"
|
|
167
|
+
git push
|
|
168
|
+
|
|
142
169
|
bump_lbt_dragonfly:
|
|
143
170
|
name: "Check Event"
|
|
144
171
|
runs-on: ubuntu-latest
|
|
@@ -166,6 +193,33 @@ jobs:
|
|
|
166
193
|
git commit -m "chore(deps): Bump lbt-dragonfly to $VERSION"
|
|
167
194
|
git push
|
|
168
195
|
|
|
196
|
+
bump_fairyfly_therm:
|
|
197
|
+
name: "Check Event"
|
|
198
|
+
runs-on: ubuntu-latest
|
|
199
|
+
if: github.event.action == 'fairyfly_therm_release'
|
|
200
|
+
steps:
|
|
201
|
+
- name: "Checkout Master Branch"
|
|
202
|
+
uses: actions/checkout@v2
|
|
203
|
+
with:
|
|
204
|
+
ref: refs/heads/master
|
|
205
|
+
token: ${{ secrets.DEPS_UPDATING }}
|
|
206
|
+
- name: "Run Update Script"
|
|
207
|
+
env:
|
|
208
|
+
VERSION: ${{ github.event.client_payload.version }}
|
|
209
|
+
run: |
|
|
210
|
+
export CLEAN_VERSION=$(echo $VERSION | sed 's/v//g')
|
|
211
|
+
sed -i --regexp-extended 's/(fairyfly-therm==).*/fairyfly-therm=='"$CLEAN_VERSION"'/' dev-requirements.txt
|
|
212
|
+
- name: "Commit and Push Changes"
|
|
213
|
+
id: push
|
|
214
|
+
env:
|
|
215
|
+
VERSION: ${{ github.event.client_payload.version }}
|
|
216
|
+
run: |
|
|
217
|
+
git config --global user.name 'ladybugbot'
|
|
218
|
+
git config --global user.email 'ladybugbot@users.noreply.github.com'
|
|
219
|
+
git add .
|
|
220
|
+
git commit -m "chore(deps): Bump fairyfly-therm to $VERSION"
|
|
221
|
+
git push
|
|
222
|
+
|
|
169
223
|
bump_ladybug_rhino:
|
|
170
224
|
name: "Check Event"
|
|
171
225
|
runs-on: ubuntu-latest
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: lbt-grasshopper
|
|
3
|
-
Version: 1.9.
|
|
3
|
+
Version: 1.9.22
|
|
4
4
|
Summary: Collection of all Ladybug Tools plugins for Grasshopper
|
|
5
5
|
Home-page: https://github.com/ladybug-tools/lbt-grasshopper
|
|
6
6
|
Author: Ladybug Tools
|
|
@@ -13,9 +13,10 @@ Description-Content-Type: text/markdown
|
|
|
13
13
|
License-File: LICENSE
|
|
14
14
|
Requires-Dist: ladybug-grasshopper==1.69.1
|
|
15
15
|
Requires-Dist: honeybee-grasshopper-core==1.43.2
|
|
16
|
-
Requires-Dist: honeybee-grasshopper-radiance==1.35.
|
|
16
|
+
Requires-Dist: honeybee-grasshopper-radiance==1.35.5
|
|
17
17
|
Requires-Dist: honeybee-grasshopper-energy==1.59.6
|
|
18
18
|
Requires-Dist: dragonfly-grasshopper==1.64.1
|
|
19
|
+
Requires-Dist: fairyfly-grasshopper==0.2.0
|
|
19
20
|
Dynamic: author
|
|
20
21
|
Dynamic: author-email
|
|
21
22
|
Dynamic: classifier
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: lbt-grasshopper
|
|
3
|
-
Version: 1.9.
|
|
3
|
+
Version: 1.9.22
|
|
4
4
|
Summary: Collection of all Ladybug Tools plugins for Grasshopper
|
|
5
5
|
Home-page: https://github.com/ladybug-tools/lbt-grasshopper
|
|
6
6
|
Author: Ladybug Tools
|
|
@@ -13,9 +13,10 @@ Description-Content-Type: text/markdown
|
|
|
13
13
|
License-File: LICENSE
|
|
14
14
|
Requires-Dist: ladybug-grasshopper==1.69.1
|
|
15
15
|
Requires-Dist: honeybee-grasshopper-core==1.43.2
|
|
16
|
-
Requires-Dist: honeybee-grasshopper-radiance==1.35.
|
|
16
|
+
Requires-Dist: honeybee-grasshopper-radiance==1.35.5
|
|
17
17
|
Requires-Dist: honeybee-grasshopper-energy==1.59.6
|
|
18
18
|
Requires-Dist: dragonfly-grasshopper==1.64.1
|
|
19
|
+
Requires-Dist: fairyfly-grasshopper==0.2.0
|
|
19
20
|
Dynamic: author
|
|
20
21
|
Dynamic: author-email
|
|
21
22
|
Dynamic: classifier
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{lbt_grasshopper-1.9.20 → lbt_grasshopper-1.9.22}/lbt_grasshopper.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|