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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ When you are ready to deploy to production, set environment variable `PRODUCTION

## Creating an app

**You'll need to have Python 3.6 or higher on your local development machine** (but it's not required on the server).
**You'll need to have Python 3.8 or higher on your local development and server machine**.
To create a new app, you can run :

### bash
Expand Down
8 changes: 5 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,14 @@
url="https://github.com/isakal/create-flask-app",
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.6",
python_requires=">=3.8",
package_dir={"": "src"},
packages=setuptools.find_packages("src"),
py_modules=[splitext(basename(path))[0] for path in glob.glob('src/*.py')],
Expand Down
13 changes: 6 additions & 7 deletions src/create_flask_app/api/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
Click==7.0
Flask==1.1.1
itsdangerous==1.1.0
Jinja2==2.11.3
MarkupSafe==1.1.1
pkg-resources==0.0.0
Werkzeug==0.16.0
Click==8.1.7
Flask==3.0.2
itsdangerous==2.1.2
Jinja2==3.1.3
MarkupSafe==2.1.5
Werkzeug==3.0.1
13 changes: 6 additions & 7 deletions src/create_flask_app/default/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
Click==7.0
Flask==1.1.1
itsdangerous==1.1.0
Jinja2==2.11.3
MarkupSafe==1.1.1
pkg-resources==0.0.0
Werkzeug==0.16.0
Click==8.1.7
Flask==3.0.2
itsdangerous==2.1.2
Jinja2==3.1.3
MarkupSafe==2.1.5
Werkzeug==3.0.1
15 changes: 7 additions & 8 deletions src/create_flask_app/spa/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
Click==7.0
Flask==1.1.1
itsdangerous==1.1.0
Jinja2==2.11.3
MarkupSafe==1.1.1
pkg-resources==0.0.0
Werkzeug==0.16.0
Flask-Cors==3.0.9
Click==8.1.7
Flask==3.0.2
itsdangerous==2.1.2
Jinja2==3.1.3
MarkupSafe==2.1.5
Werkzeug==3.0.1
Flask-Cors==4.0.0