flask 2.2.5-1ubuntu1 source package in Ubuntu
Changelog
flask (2.2.5-1ubuntu1) mantic; urgency=low * Merge from Debian unstable. Remaining changes: - d/control: Demote python3-dotenv to Suggests; this is is an optional dependency not in Ubuntu main. flask (2.2.5-1) unstable; urgency=medium * d/watch: Switch to using github tags instead of pypi. * New upstream release. * Remove CVE-2023-30861 patch applied upstream. -- Gianfranco Costamagna <email address hidden> Fri, 15 Sep 2023 09:01:28 +0200
Upload details
- Uploaded by:
- Gianfranco Costamagna
- Uploaded to:
- Mantic
- Original maintainer:
- Debian Python Team
- Architectures:
- all
- Section:
- python
- Urgency:
- Medium Urgency
See full publishing history Publishing
Series | Published | Component | Section | |
---|---|---|---|---|
Mantic | release | main | python |
Downloads
File | Size | SHA-256 Checksum |
---|---|---|
flask_2.2.5.orig.tar.xz | 597.4 KiB | 18a987a6da81ca085c6ec649d6747db0f1032e8e05d9a1cb906ff0aee8598361 |
flask_2.2.5-1ubuntu1.debian.tar.xz | 7.8 KiB | f9bd31d5bed9b1a1e24dba8802630e792be04a12e51780c7c970946e5fd26cfa |
flask_2.2.5-1ubuntu1.dsc | 2.5 KiB | 48a4cd53259ba44cc40a0f369eb0a754d5b1cb28a753fe64257a782ac2132231 |
Available diffs
- diff from 2.2.2-3ubuntu1 to 2.2.5-1ubuntu1 (41.1 KiB)
Binary packages built by this source
- python-flask-doc: micro web framework based on Werkzeug and Jinja2 - documentation
Flask is a micro web framework for Python based on Werkzeug, Jinja 2 and good
intentions. A minimal Flask application looks like that:
.
from flask import Flask
app = Flask(__name__)
.
@app.route("/")
def hello():
return "Hello World!"
.
if __name__ == '__main__':
app.run()
.
This package contains the documentation for Flask.
- python3-flask: micro web framework based on Werkzeug and Jinja2 - Python 3.x
Flask is a micro web framework for Python based on Werkzeug, Jinja 2 and good
intentions. A minimal Flask application looks like that:
.
from flask import Flask
app = Flask(__name__)
.
@app.route("/")
def hello():
return "Hello World!"
.
if __name__ == '__main__':
app.run()
.
This package contains the Python 3.x module.