Skip to content

Commit

Permalink
badge
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewtrotter committed Apr 28, 2024
1 parent 1d95c74 commit 3b43212
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 10 deletions.
15 changes: 5 additions & 10 deletions .github/workflows/python-lib.yaml
Original file line number Diff line number Diff line change
@@ -1,22 +1,17 @@
name: Python Library Test and Publish
name: Python package

on:
push:
branches:
- main

permissions:
contents: write
deployments: write
packages: write
statuses: write

jobs:
test_and_tag:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.7.17', '3.8.18', '3.9.19', '3.10.14', '3.11.9', '3.12.3']
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12']
# python-version: ['3.7.17', '3.8.18', '3.9.19', '3.10.14', '3.11.9', '3.12.3']
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
Expand All @@ -26,7 +21,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install build pytest wheel
pip install build pytest wheel distutils
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Test with pytest
run: pytest test.py
Expand Down
2 changes: 2 additions & 0 deletions readme.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
Asset Universe
==============

![Python 3.7](https://github.com/matthewtrotter/assetuniverse/workflows/Python%20package/badge.svg)

The asset universe downloads historical daily prices and returns of user-specified stocks, futures, and currencies. It downloads historical data from the following sources:

- [Interactive Brokers Trader Workstation](https://www.interactivebrokers.com/en/trading/tws.php)
Expand Down

0 comments on commit 3b43212

Please sign in to comment.