forked from Voyz/ibind
-
Notifications
You must be signed in to change notification settings - Fork 0
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
feat: Add CI Workflow #1
Open
weklund
wants to merge
24
commits into
master
Choose a base branch
from
feat/add-ci-workflow
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
* master: (68 commits) updated README small fix to tests renamed QueueControllerClass and SubscriptionProcessorClass arguments in IbkrWsClient to lower camel case minor lint fixes turned oauth into a subpackage of ibind and renamed oauth.py to oauth1a.py renamed OAuth nomenclature to OAuth 1.0a (or OAuth1a) in anticipation of OAuth 2.0 support removed print(client.live_session_token) added ability to catch request errors in IbkrClient and added better handling of 'no bridge' error breaking: removed redundant 'publish' parameter from initialize_brokerage_session which needs to always be set to True added support for calling initialize_brokerage_session in init_oauth added IBIND_OAUTH_WS_URL and default to it if no `url` is passed to IbkrWsClient maintain gateway support fix websocket oauth added oauth for websocket support updated rest_client tests added OAuthConfig.copy simplified oauth optional dependencies added oauth_rest_url to OAuthConfig simplified requirements-oauth.txt updated inline docs for IbkrClient ...
* master: (21 commits) updated marketdata_unsubscribe introduced OrderRequest dataclass and deprecated make_order_request function updated process_instruments to fix PLW2901 v0.1.11 added build_docs.sh updated pydoc-markdown.yml updated API reference markdown docs added docstrings to QuestionType and Answers added docstrings to oauth turned ws_client methods private: get_cookie, get_header, on_reconnect, on_message, on_open, on_error added docstrings to ibkr_utils added docstrings to ibkr_definitions added docstrings to IbkrClient turned make_logger and get_headers into private methods removed attempt parameter in ibkr_client.request removed attempt parameter in rest_client.request v0.1.10 if IbkrClient `url` parameter is specified it will be used instead of oauth_rest_url added @DataClass to OAuthConfig ibkr_ws_client.use_auth is read from env var ...
* master: added fixes for automatically registering signal handler on non-main thread v0.1.12 added load_dotenv monkey patch to display a warning if it is called after ibind has been imported updated .gitignore removed usage of _testcapi in test_utils.py and updated RaiseLogsContext with inline docs and docstrings Revert .gitignore Revert pyproject.toml Update Tickler to use threading events for stopping. No longer needs to wait for fix unit test added global default_filtering flag added OAuthConfig.verify_config changed 'localhost' default to '127.0.0.1' added extra notes to live_orders removed debug statements added use_session parameter and reworked the implementation of sessions to make it optional. Shutdown handling has been moved to RestClient, though `OAuth1aConfig.shutdown_oauth` parameter still defines whether OAuth gets closed when shutting down added way to specify custom parse_order_request mapping added is_close to OrderRequest parameters changed requests.requests for requests.Session
* master: re-added 0.1.13 dist v0.1.13
* master: remaking session on ConnectionError only if self.use_session == True
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Github workflow that adds CI to Ibind.
Requirements based from Voyz#45