Skip to content

Commit

Permalink
Remove python 3.8 support
Browse files Browse the repository at this point in the history
  • Loading branch information
xmatthias authored Sep 5, 2023
1 parent 0fc5380 commit 6070179
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 18 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@v3
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@v3
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/[email protected]
with:
python-version: 3.8
python-version: 3.11

- name: Extract branch name
shell: bash
Expand Down
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 6070179

Please sign in to comment.