Skip to content

Commit

Permalink
Flask: update Flask and dependencies to v3.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lwesterhof committed Dec 20, 2024
1 parent 7387e73 commit dacd2df
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 15 deletions.
13 changes: 5 additions & 8 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,23 +10,20 @@ on:
- '**'

jobs:
job:
runs-on: ubuntu-22.04
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11']
lint:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
architecture: x64
python-version: 3.12

- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install flake8==5.0.4 flake8-import-order==0.18.1 darglint==1.8.1 codespell mypy types-requests
python -m pip install flake8==7.1.1 flake8-import-order==0.18.2 darglint==1.8.1 codespell mypy types-requests
- name: Lint with flake8
run: |
Expand Down
14 changes: 7 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name='yoda_eus',
version='1.9.0.dev',
version='2.0.0.dev',
author='Utrecht University - ITS/RDMS department',
author_email='[email protected]',
url='https://uu.nl/rdm',
Expand All @@ -19,12 +19,12 @@
install_requires=[
"bcrypt==4.0.1",
"email-validator==2.0.0",
"Flask==3.0.2",
"Flask-session==0.6.0",
"Flask-SQLAlchemy==3.0.3",
"Flask-wtf==1.2.1",
"Flask==3.1.0",
"flask-session==0.8.0",
"Flask-SQLAlchemy==3.1.1",
"Flask-WTF==1.2.2",
"psycopg2-binary==2.9.10",
"requests==2.32.0",
"Werkzeug==3.0.3"
"requests==2.32.3",
"Werkzeug==3.1.3"
],
)

0 comments on commit dacd2df

Please sign in to comment.