Skip to content
Open
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
6 changes: 3 additions & 3 deletions .github/workflows/build-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
matrix:
include:
- {name: '3.9', python: '3.9', tox: py39}
- {name: '3.12', python: '3.12', tox: py312}
- {name: '3.14', python: '3.14', tox: py314}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
Expand All @@ -35,7 +35,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
python-version: "3.14"
- name: Install pypa/build
run: python -m pip install build
- name: Build a binary wheel and a source tarball
Expand All @@ -59,7 +59,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: 3.12
python-version: 3.14
- run: python -m pip install tox
- run: python -m tox -elint
publish-to-pypi:
Expand Down
10 changes: 6 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,16 +22,18 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
requires-python = ">=3.9"
dependencies = [
"flask>=3.0.2,<4.0",
"flask>=3.1.2,<4.0",
"python-dotenv>=1.0.0,<2.0",
"marshmallow>=3.18.0,<4.0",
"marshmallow>=4.1.0,<5.0",
"sqlalchemy>=2.0,<3.0",
"marshmallow-sqlalchemy>=1.1.1,<2.0",
"flask_smorest>=0.45.0,<0.46",
"apispec>=6.1.0,<7.0",
"flask_smorest>=0.46.2,<0.47",
"apispec>=6.9.0,<7.0",
"authlib>=1.3.0,<2.0",
"bemserver-core>=0.21.0,<0.22",
]
Expand Down
11 changes: 5 additions & 6 deletions requirements/install.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
# This file is autogenerated by pip-compile with Python 3.11
# by the following command:
#
# pip-compile --output-file=requirements/install.txt pyproject.toml
# pip-compile --cert=None --client-cert=None --index-url=None --output-file=requirements/install.txt --pip-args=None pyproject.toml
#
alembic==1.14.0
# via bemserver-core
amqp==5.3.1
# via kombu
apispec[marshmallow]==6.8.1
apispec[marshmallow]==6.9.0
# via
# bemserver-api (pyproject.toml)
# flask-smorest
Expand Down Expand Up @@ -53,11 +53,11 @@ click-repl==0.3.0
# via celery
cryptography==44.0.1
# via authlib
flask==3.1.1
flask==3.1.2
# via
# bemserver-api (pyproject.toml)
# flask-smorest
flask-smorest==0.45.0
flask-smorest==0.46.2
# via bemserver-api (pyproject.toml)
flexcache==0.3
# via pint
Expand All @@ -81,7 +81,7 @@ markupsafe==3.0.2
# jinja2
# mako
# werkzeug
marshmallow==3.24.1
marshmallow==4.1.0
# via
# apispec
# bemserver-api (pyproject.toml)
Expand All @@ -97,7 +97,6 @@ oso==0.27.3
packaging==24.2
# via
# apispec
# marshmallow
# webargs
pandas==2.2.3
# via bemserver-core
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = lint,py39,py310,py311,py312
envlist = lint,py39,py310,py311,py312,py313,py314
skip_missing_interpreters = True

[testenv]
Expand Down
Loading