Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,22 @@ jobs:
uses: Drakkar-Software/.github/.github/workflows/python3_lint_workflow.yml@master
with:
project_main_package: octobot_backtesting
use_full_requirements: true

tests:
needs: lint
uses: Drakkar-Software/.github/.github/workflows/python3_tests_workflow.yml@master
with:
use_full_requirements: true
secrets:
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}

publish:
needs: tests
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
uses: Drakkar-Software/.github/.github/workflows/python3_sdist_workflow.yml@master
with:
use_full_requirements: true
secrets:
PYPI_OFFICIAL_UPLOAD_URL: ${{ secrets.PYPI_OFFICIAL_UPLOAD_URL }}
PYPI_USERNAME: __token__
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.9.8] - 2024-11-26
### Added
[Requirements] [full] requirements installation

## [1.9.7] - 2023-12-11
### Added
- [Backtesting] extra_backtesting_time_frames
Expand Down
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,6 @@ include README.md
include LICENSE
include CHANGELOG.md
include requirements.txt
include full_requirements.txt

global-exclude *.c
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# OctoBot-Backtesting [1.9.7](https://github.com/Drakkar-Software/OctoBot-Backtesting/blob/master/CHANGELOG.md)
# OctoBot-Backtesting [1.9.8](https://github.com/Drakkar-Software/OctoBot-Backtesting/blob/master/CHANGELOG.md)
[![Codacy Badge](https://api.codacy.com/project/badge/Grade/aa0b156e99604b3c98923fffeaea6a49)](https://app.codacy.com/gh/Drakkar-Software/OctoBot-Backtesting?utm_source=github.com&utm_medium=referral&utm_content=Drakkar-Software/OctoBot-Backtesting&utm_campaign=Badge_Grade_Dashboard)
[![PyPI](https://img.shields.io/pypi/v/OctoBot-Backtesting.svg)](https://pypi.python.org/pypi/OctoBot-Backtesting/)
[![Coverage Status](https://coveralls.io/repos/github/Drakkar-Software/OctoBot-Backtesting/badge.svg?branch=master)](https://coveralls.io/github/Drakkar-Software/OctoBot-Backtesting?branch=master)
Expand Down
4 changes: 4 additions & 0 deletions full_requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@

# Drakkar-Software requirements
OctoBot-Commons[full]>=1.9, <1.10
OctoBot-Tentacles-Manager[full]>=2.9, <2.10
2 changes: 1 addition & 1 deletion octobot_backtesting/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@
import logging

PROJECT_NAME = "OctoBot-Backtesting"
VERSION = "1.9.7"
VERSION = "1.9.8"

logging.getLogger('aiosqlite').setLevel(logging.ERROR)
4 changes: 4 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
PACKAGES = find_packages(exclude=["tests"])

REQUIRED = open('requirements.txt').readlines()
FULL_REQUIRED = open('full_requirements.txt').readlines()
REQUIRES_PYTHON = '>=3.8'

setup(
Expand All @@ -39,6 +40,9 @@
zip_safe=False,
data_files=[],
install_requires=REQUIRED,
extras_require={
'full': FULL_REQUIRED,
},
python_requires=REQUIRES_PYTHON,
classifiers=[
'Development Status :: 5 - Production/Stable',
Expand Down