Skip to content

Commit

Permalink
Merge pull request #67 from tastyware/v5.7
Browse files Browse the repository at this point in the history
v5.7
  • Loading branch information
Graeme22 authored Jul 8, 2023
2 parents 95d5008 + 9a27ba4 commit 949b2aa
Show file tree
Hide file tree
Showing 25 changed files with 440 additions and 225 deletions.
2 changes: 1 addition & 1 deletion .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# If you want to support this project, you can just sign up using my referral code!
custom: ['https://start.tastytrade.com/#/login?referralCode=YYGKBEQ2EX']
custom: ['https://start.tastytrade.com/#/login?referralCode=YYGKBEQ2EX', 'https://graemeholliday.argent.xyz']
2 changes: 1 addition & 1 deletion .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@ jobs:
- name: Sorting...
run: isort --check --diff tastytrade/
- name: Linting...
run: flake8 --count --show-source --statistics --ignore=E501 tastytrade/
run: flake8 --count --show-source --statistics tastytrade/
- name: Type checking...
run: mypy -p tastytrade
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ venv:

test:
isort --check --diff tastytrade/
flake8 --count --show-source --statistics --ignore=E501 tastytrade/
flake8 --count --show-source --statistics tastytrade/
mypy -p tastytrade

install:
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
project = 'tastytrade'
copyright = '2023, Graeme Holliday'
author = 'Graeme Holliday'
release = '1.0'
release = '5.7'

# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
Expand Down
8 changes: 3 additions & 5 deletions docs/index.rst
Original file line number Diff line number Diff line change
@@ -1,15 +1,13 @@
tastytrade: An unofficial Python SDK for Tastytrade!
====================================================

.. include:: ../README.rst
:start-after: inclusion-marker

.. toctree::
:maxdepth: 2
:caption: Documentation:

`View this project on GitHub <https:/tastyware/tastytrade>`_

.. include:: ../README.rst
:start-after: inclusion-marker

.. toctree::
:maxdepth: 2
:caption: SDK Reference:
Expand Down
8 changes: 4 additions & 4 deletions docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
sphinx==5.3.0
sphinx-rtd-theme==1.1.1
sphinx==6.2.1
sphinx-rtd-theme==1.2.2
sphinx-toolbox==3.4.0
enum-tools==0.9.0.post1
autodoc-pydantic==1.8.0
enum-tools==0.10.0
autodoc-pydantic==1.9.0
12 changes: 6 additions & 6 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
requests==2.26.0
mypy==0.931
flake8==3.9.2
isort==5.8.0
types-requests==2.28.10
requests==2.31.0
mypy==1.4.1
flake8==6.0.0
isort==5.12.0
types-requests==2.31.0.1
websockets==11.0.3
pydantic==1.10.7
pydantic==1.10.11
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,8 @@
license='MIT',
install_requires=[
'requests<3',
'dataclasses',
'websockets>=11.0.3',
'pydantic>=1.10.7'
'pydantic<2'
],
packages=find_packages(exclude=['ez_setup', 'tests*']),
include_package_data=True
Expand Down
Loading

0 comments on commit 949b2aa

Please sign in to comment.