Skip to content

Commit

Permalink
Fixed bug in format
Browse files Browse the repository at this point in the history
  • Loading branch information
jbaron committed Mar 26, 2024
1 parent d6c2a9b commit c8dcc06
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.11", "3.12"]
python-version: ["3.10", "3.11"]

steps:
- uses: actions/checkout@v3
Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,13 +38,14 @@ dynamic = ["version"]
authors = [ { name="roboquant team", email="info@roboquant.org" },]
description = "A fast algo-trading platform"
readme = "README.md"
requires-python = ">=3.11"
requires-python = ">=3.10"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: Apache Software License",
Expand Down
1 change: 1 addition & 0 deletions roboquant/feeds/csvfeed.py
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,7 @@ def __init__(self):
columns=columns,
has_time_column=True,
date_fmt="%Y%m%d",
time_fmt="%H%M%S",
endswith=".txt"
)

Expand Down

0 comments on commit c8dcc06

Please sign in to comment.