-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fix downloading of ISIN file * Fix actions * Bump actions version * Specific ubunut version * Remove python 3.5 * Stringify
- Loading branch information
Showing
8 changed files
with
64 additions
and
102 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,18 +8,24 @@ on: | |
tags: ["*"] | ||
jobs: | ||
CI: | ||
runs-on: ubuntu-latest | ||
runs-on: ubuntu-20.04 | ||
strategy: | ||
matrix: | ||
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11"] # Specify Python versions here | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Set up Python 3.7 | ||
uses: actions/setup-python@v2 | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: 3.7 | ||
python-version: ${{ matrix.python-version }} | ||
|
||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install -r requirements/ci.txt | ||
pip install -e . | ||
- name: Download Data | ||
run: python -c "from python_lei.utils import Download; Download(_is_actions=True)" | ||
|
||
|
@@ -38,12 +44,12 @@ jobs: | |
if: startsWith(github.ref, 'refs/tags/') | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Set up Python 3.7 | ||
uses: actions/setup-python@v2 | ||
- name: Set up Python 3.10 | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: 3.7 | ||
python-version: 3.10 | ||
|
||
- name: PyPi Deploy preparation | ||
run: | | ||
|
@@ -53,4 +59,4 @@ jobs: | |
uses: pypa/[email protected] | ||
with: | ||
user: ${{ secrets.PYPI_USER }} | ||
password: ${{ secrets.PYPI_PASSWORD }} | ||
password: ${{ secrets.PYPI_PASSWORD }} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,17 @@ | ||
black>=19.10b0 ; python_version >= "3.6" | ||
isort~=4.3.21 | ||
flake8~=3.7.9 | ||
flake8-absolute-import~=1.0 ; python_version >= "3.6" | ||
flake8-black~=0.1.1 ; python_version >= "3.6" | ||
flake8-blind-except~=0.1.1 ; python_version >= "3.6" | ||
flake8-builtins~=1.5.2 ; python_version >= "3.6" | ||
flake8-comprehensions~=3.2.2 ; python_version >= "3.6" | ||
flake8-docstrings~=1.5.0 ; python_version >= "3.6" | ||
flake8-mutable~=1.2.0 ; python_version >= "3.6" | ||
flake8-print~=3.1.4 ; python_version >= "3.6" | ||
flake8-quotes~=3.0.0 ; python_version >= "3.6" | ||
flake8-tuple~=0.4.1 ; python_version >= "3.6" | ||
pytest~=4.6 # pytest 5 requires py3 | ||
pytest-cov~=2.8.1 | ||
pytest-env~=0.6.2 | ||
pytest-sugar~=0.9.2 | ||
testfixtures~=6.14.0 | ||
black | ||
isort | ||
flake8 | ||
flake8-absolute-import | ||
flake8-black | ||
flake8-blind-except | ||
flake8-comprehensions | ||
flake8-docstrings | ||
flake8-mutable | ||
flake8-print | ||
flake8-quotes | ||
flake8-tuple | ||
pytest | ||
pytest-cov | ||
pytest-env | ||
pytest-sugar | ||
testfixtures |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
pandas | ||
texttable | ||
requests | ||
requests | ||
bs4 |
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
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
This file was deleted.
Oops, something went wrong.
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
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