Skip to content
New issue

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

feat: add support for python 3.11 #771

Merged
merged 8 commits into from Aug 2, 2023
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion Makefile
Expand Up @@ -65,7 +65,7 @@ install-flexmeasures:
pip install -e .

install-pip-tools:
pip3 install -q "pip-tools>=6.4"
pip3 install -q "pip-tools>=7.0"

install-docs-dependencies:
pip install -r requirements/docs.txt
Expand Down
6 changes: 3 additions & 3 deletions requirements/app.in
Expand Up @@ -16,8 +16,8 @@ humanize
psycopg2-binary
bcrypt
pytz
# limit the numpy version to make it compatible with numba==0.56.4, which timely-beliefs >=1.18 depends on (library sktime).
numpy<1.24
# limit the numpy version to make it compatible with python 3.8, which timely-beliefs >=1.18 depends on (library sktime).
Nischay-Pro marked this conversation as resolved.
Show resolved Hide resolved
numpy<1.25
isodate
click
click-default-group
Expand Down Expand Up @@ -67,4 +67,4 @@ Flask-SQLAlchemy>=2.4.3,<3
# flask should be after all the flask plugins, because setup might find they ARE flask
# <2.3: https://github.com/Parallels/rq-dashboard/issues/417 and https://github.com/FlexMeasures/flexmeasures/issues/754 and flask-login 0.6.1 not compatible
flask>=1.0, <=2.1.2
werkzeug<=2.1
werkzeug<=2.1
1 change: 1 addition & 0 deletions setup.py
Expand Up @@ -53,6 +53,7 @@ def load_requirements(use_case):
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Framework :: Flask",
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: Apache Software License",
Expand Down