Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updating poetry to v1.3.2 and dependencies #4076

Merged
merged 57 commits into from
Feb 9, 2023
Merged
Changes from all commits
Commits
Show all changes
57 commits
Select commit Hold shift + click to select a range
37b6c5c
Updating poetry to v1.3.2 and dependencies
aia Jan 30, 2023
4e110a0
Merge branch 'develop' into feature/poetry-update
jmaslek Jan 30, 2023
ea66db6
Merge branch 'develop' into feature/poetry-update
aia Feb 1, 2023
90ca241
Resolving merge conflicts
aia Feb 2, 2023
dea6987
Merging develop and resolving conflicts
aia Feb 2, 2023
79d3f1d
Merge branch 'develop' into feature/poetry-update
aia Feb 2, 2023
30a7873
Fixing conda pip syntax
aia Feb 2, 2023
23d8838
Updating poetry.lock
aia Feb 2, 2023
a6c6289
Updating requirements
aia Feb 2, 2023
d0ebef4
Updating Windows10 build
aia Feb 2, 2023
c5d0f35
Windows10 build updates
aia Feb 3, 2023
004157d
Windows10 build update
aia Feb 3, 2023
641d3b8
Windows10 build updates
aia Feb 3, 2023
cfc691f
Windows10 build updates
aia Feb 3, 2023
7fb8c92
Windows10 build updates
aia Feb 3, 2023
16270ed
Windows10 build updates
aia Feb 3, 2023
b927679
Windows10 build updates
aia Feb 3, 2023
45ff76e
Windows10 build updates
aia Feb 3, 2023
69ea7cb
Windows10 build updates
aia Feb 3, 2023
891011d
Windows10 build updates
aia Feb 3, 2023
300a942
Windows10 build updates
aia Feb 3, 2023
43ea9e0
Windows10 build updates
aia Feb 3, 2023
f9c7d32
Windows10 build updates
aia Feb 3, 2023
e755af3
Windows10 build updates
aia Feb 3, 2023
e95721e
Merging latest changes and updating Windows/Mac actions
aia Feb 5, 2023
0de1eb7
Updating Intel MacOS Build
aia Feb 5, 2023
3a6289e
Updating Intel MacOS Build
aia Feb 5, 2023
b6a0e64
Updating Intel MacOS Build
aia Feb 5, 2023
497e623
Updating Intel MacOS Build
aia Feb 5, 2023
3f538b2
Updating Intel MacOS Build
aia Feb 5, 2023
8841410
Updating Intel MacOS Build
aia Feb 5, 2023
497bf02
Updating M1 MacOS Build
aia Feb 5, 2023
8fc9e02
Lets get M1 working
colin99d Feb 6, 2023
ebcadf3
Merge branch 'develop' into feature/poetry-update
jmaslek Feb 6, 2023
0ee092a
Lets get M1 working
colin99d Feb 6, 2023
efc708a
Merge branch 'feature/poetry-update' of https://github.com/OpenBB-fin…
colin99d Feb 6, 2023
7e2695f
Permission Issue on tests / New setup.nsis
andrewkenreich Feb 6, 2023
0ff8530
Merge remote-tracking branch 'origin/develop' into feature/poetry-update
aia Feb 6, 2023
3bfcf27
Merging the latest changes and picking integration tests to run
aia Feb 6, 2023
4ad3f8a
Adding Mac requirements
aia Feb 6, 2023
aaf0175
Fixing spelling
aia Feb 6, 2023
84bfd1f
Limiting integration tests on builds
aia Feb 6, 2023
ae6bfa6
Merge branch 'develop' into feature/poetry-update
aia Feb 6, 2023
0137883
commenting out MessageBox prints on win installer
andrewkenreich Feb 7, 2023
7244f3a
Merge branch 'develop' into feature/poetry-update
martinb-ai Feb 7, 2023
b8f44a5
update pinned lightgbm version
martinb-ai Feb 7, 2023
a1a75d6
fix tests
martinb-ai Feb 7, 2023
517c988
ignore lightning logs for tests
martinb-ai Feb 7, 2023
01ccc55
testing auto signing - integration off - Windows
andrewkenreich Feb 8, 2023
5e44600
string fix
andrewkenreich Feb 8, 2023
29eb7c9
bad file path
andrewkenreich Feb 9, 2023
9ac2554
wrong spot
andrewkenreich Feb 9, 2023
d91a89a
should work - signing
andrewkenreich Feb 9, 2023
01594b5
Added branch check conditions for signing build
luqmanbello Feb 9, 2023
64c01c1
Merge branch 'develop' into feature/poetry-update
piiq Feb 9, 2023
624ba32
Merge branch 'develop' into feature/poetry-update
jmaslek Feb 9, 2023
41703e9
Remove platform specific requirements-txts
piiq Feb 9, 2023
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
6 changes: 6 additions & 0 deletions .github/workflows/windows10_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,12 @@ jobs:
run: |
C:\'.\Program Files (x86)\'\nsis\makensis.exe .\build\nsis\setup.nsi

# This should autosign the installer now - We really need to only do this when needed though. ON RELEASE
- name: Sign Installer
if: startsWith(github.ref, 'refs/heads/main')
run: |
& 'C:\Program Files (x86)\Windows Kits\10\bin\10.0.19041.0\x86\signtool.exe' sign /fd sha256 /tr http://ts.ssl.com /td sha256 /sha1 26a8e28dbe3b1db7407b92d7de97c290d4436a32 'C:\Users\Administrator\actions-runner\_work\OpenBBTerminal\OpenBBTerminal\build\nsis\OpenBB Terminal Setup.exe'

- name: Save Build Artifact
uses: actions/upload-artifact@v3
with:
Expand Down