Pin python requirements and bump to latest versions (#1140)

* Pin python requirements and bump to latest versions
* fix(fileimports): add exception printing to file imports

Co-authored-by: Gergő Jedlicska <gergo@jedlicska.com>
This commit is contained in:
Iain Sproat
2022-11-01 11:17:03 +00:00
committed by GitHub
parent 1dac1e43b6
commit 3d4b3b6979
5 changed files with 8 additions and 7 deletions
+2 -2
View File
@@ -1,2 +1,2 @@
numpy-stl==2.16.3
specklepy==2.5.1
numpy-stl==2.17.1
specklepy==2.9.0
@@ -66,6 +66,7 @@ if __name__ == '__main__':
results = {'success': True, 'commitId': commit_id}
except Exception as ex:
results = {'success': False, 'error': str(ex)}
print(ex)
with open(TMP_RESULTS_PATH, 'w') as f:
json.dump(results, f)
+1 -1
View File
@@ -28,7 +28,7 @@ COPY packages/viewer ./packages/viewer/
COPY packages/preview-service ./packages/preview-service/
# This way the foreach only builds the frontend and its deps
RUN yarn workspaces foreach -pt run build
RUN yarn workspaces foreach run build
+2 -2
View File
@@ -1,2 +1,2 @@
psycopg2-binary
prometheus-client
psycopg2-binary==2.9.4
prometheus-client==0.15.0
+2 -2
View File
@@ -1,2 +1,2 @@
specklepy
requests
specklepy==2.9.0
requests==2.28.1