Skip to content

Commit

Permalink
Merge branch 'hotfix-1.8.2' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
bug-or-feature committed Nov 6, 2024
2 parents 173321e + 5c15b69 commit 6f7e836
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 14 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/slow-test-develop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Slow test (develop)

on:
schedule:
- cron: '0 1 * * *'
- cron: '0 2 * * *'

workflow_dispatch:

Expand All @@ -23,7 +23,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
python-version: '3.10'

- name: Install dependencies
run: |
Expand Down
13 changes: 5 additions & 8 deletions .github/workflows/slow-test-master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,28 +2,25 @@ name: Slow test (master)

on:
schedule:
- cron: '30 1 * * 0'
- cron: '0 1 * * 0'

workflow_dispatch:

jobs:
build:

runs-on: ubuntu-20.04
strategy:
matrix:
python-version: [ 3.8, 3.7 ]
runs-on: ubuntu-latest

steps:

- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
ref: "master"

- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
python-version: '3.8'

- name: Install dependencies
run: |
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Release notes

## Version 1.8.1
## Version 1.8.2

- new Commission Report highlights where values need to be updated
- parquet capital setup bugs fixed
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Rob Carver
[https://qoppac.blogspot.com/p/pysystemtrade.html](https://qoppac.blogspot.com/p/pysystemtrade.html)


Version 1.8.1
Version 1.8.2


2024-11-06
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "pysystemtrade"
version = "1.8.1"
version = "1.8.2"
authors = [
{ name="Robert Carver", email="[email protected]" },
]
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ def dir_this_file():

setup(
name="pysystemtrade",
version="1.8.1",
version="1.8.2",
author="Robert Carver",
description=(
"Python framework for running systems as in Robert Carver's book Systematic Trading"
Expand Down

0 comments on commit 6f7e836

Please sign in to comment.