Skip to content

Commit

Permalink
Merge pull request #363 from freqtrade/dependabot/pip/pandas-2.1.0
Browse files Browse the repository at this point in the history
Bump pandas from 2.0.3 to 2.1.0
  • Loading branch information
xmatthias committed Sep 6, 2023
2 parents 281284a + 6070179 commit 4478172
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 19 deletions.
20 changes: 4 additions & 16 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
strategy:
matrix:
os: [ ubuntu-20.04, ubuntu-22.04, macos-latest ]
python-version: ["3.8", "3.9", "3.10", "3.11"]
python-version: ["3.9", "3.10", "3.11"]

steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -107,7 +107,7 @@ jobs:
strategy:
matrix:
os: [ windows-latest ]
python-version: ["3.8", "3.9", "3.10", "3.11"]
python-version: ["3.9", "3.10", "3.11"]

steps:
- uses: actions/checkout@v4
Expand All @@ -132,19 +132,7 @@ jobs:
- name: Installation (uses freqtrade dependencies)
run: |
cp -r ./freqtrade_tmp/build_helpers .
# mkdir build_helpers/
# TODO: Update this to not download 3 files while only needing 1.
# Invoke-WebRequest -Outfile build_helpers/install_windows.ps1 https://github.com/freqtrade/freqtrade/raw/develop/build_helpers/install_windows.ps1
# if ( ${{ matrix.python-version }} -eq "3.8" ) {
# Invoke-WebRequest -Outfile build_helpers/TA_Lib-0.4.25-cp38-cp38-win_amd64.whl https://github.com/freqtrade/freqtrade/raw/develop/build_helpers/TA_Lib-0.4.25-cp38-cp38-win_amd64.whl
# }
# if ( ${{ matrix.python-version }} -eq "3.8" ) {
# Invoke-WebRequest -Outfile build_helpers/TA_Lib-0.4.25-cp39-cp39-win_amd64.whl https://github.com/freqtrade/freqtrade/raw/develop/build_helpers/TA_Lib-0.4.25-cp39-cp39-win_amd64.whl
# }
# if ( ${{ matrix.python-version }} -eq "3.10" ) {
# Invoke-WebRequest -Outfile build_helpers/TA_Lib-0.4.25-cp310-cp310-win_amd64.whl https://github.com/freqtrade/freqtrade/raw/develop/build_helpers/TA_Lib-0.4.25-cp310-cp310-win_amd64.whl
# }
./build_helpers/install_windows.ps1
Expand Down Expand Up @@ -197,7 +185,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4.7.0
with:
python-version: 3.8
python-version: 3.11

- name: Extract branch name
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
TA-Lib==0.4.28
pandas==2.0.3
pandas==2.1.0
# matplotlib
3 changes: 1 addition & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ project_urls =
license = GPLv3
classifiers =
Programming Language :: Python :: 3
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Expand All @@ -32,7 +31,7 @@ tests_require =
pytest-mock

packages = find:
python_requires = >=3.6
python_requires = >=3.9

[options.packages.find]
where = .
Expand Down

0 comments on commit 4478172

Please sign in to comment.