We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
First upgrade to Pandas 2.x latest, needed for Python 3.12
pandas_ta
tradeeexecutor.utils
Then prepare the codebase to fix the backwards incompatible break in Python 3.12 datetime
datetime.datetime.utcnow
naive_utcnow
datetime.datetime.utcfromtimestamp
naive_utcfromtimestamp
pd.Timestamp.utcfromtimestamp(timestamp)
pd.Timestamp.utcfromtimestamp(timestamp).tz_localize(None)
Needs to be manually search and replaced, imports added.
Then try Python 3.12
The text was updated successfully, but these errors were encountered:
AlexTheLion123
No branches or pull requests
First upgrade to Pandas 2.x latest, needed for Python 3.12
pandas_ta
pandas_ta
and patchtradeeexecutor.utils
if easierpandas_ta
github for existing patchesThen prepare the codebase to fix the backwards incompatible break in Python 3.12 datetime
datetime.datetime.utcnow
tonaive_utcnow
datetime.datetime.utcfromtimestamp
tonaive_utcfromtimestamp
pd.Timestamp.utcfromtimestamp(timestamp)
topd.Timestamp.utcfromtimestamp(timestamp).tz_localize(None)
Needs to be manually search and replaced, imports added.
Then try Python 3.12
The text was updated successfully, but these errors were encountered: