Skip to content

Commit

Permalink
Merge pull request #162 from AsyncAlgoTrading/maint
Browse files Browse the repository at this point in the history
Upkeep
  • Loading branch information
timkpaine committed Aug 16, 2021
2 parents bd61e8e + 309a019 commit e0eeffd
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,9 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: [3.7, 3.8]
python-version: [3.7, 3.9]
node-version: [12.x]
event-name: [push]

steps:
- uses: actions/checkout@v2
Expand Down Expand Up @@ -69,14 +70,17 @@ jobs:
- name: Test
run: |
make tests
if: ${{ github.event_name == matrix.event-name || matrix.os == 'ubuntu-latest' }}

- name: Test C++
run: |
make testpycpp
if: ${{ github.event_name == matrix.event-name || matrix.os == 'ubuntu-latest' }}

- name: Live tests
run: |
make testruns
if: ${{ github.event_name == matrix.event-name || matrix.os == 'ubuntu-latest' }}

- name: Twine check
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: [3.7, 3.8]
python-version: [3.7, 3.8, 3.9]
node-version: [12.x]

steps:
Expand Down
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,8 @@ def get_version(file, name="__version__"):
"aiostream>=0.3.1",
"matplotlib>2.2",
"numpy>=1.11.0",
"pandas>=0.24.1" "perspective-python>=0.4.8",
"pandas>=0.24.1",
"perspective-python>=0.4.8",
"pybind11>=2",
"temporal-cache>=0.1.2",
"tornado>=6.0",
Expand All @@ -66,6 +67,8 @@ def get_version(file, name="__version__"):
"pytest-faulthandler>=2.0.1",
"Sphinx>=1.8.4",
"sphinx-markdown-builder>=0.5.2",
"types-pytz>=2021.1.2",
"types-requests>=2.25.6",
] + requires


Expand Down

0 comments on commit e0eeffd

Please sign in to comment.