flask 2.0.3-1ubuntu1 source package in Ubuntu
Changelog
flask (2.0.3-1ubuntu1) kinetic; urgency=low * Merge from Debian unstable. Remaining changes: - d/control: Demote python3-{asgiref,dotenv} to Suggests; these are optional dependencies and neither is in Ubuntu main. flask (2.0.3-1) unstable; urgency=medium * Team upload. * New upstream version 2.0.3 * d/p/426a1e25b77e760b4f54bf94aee3e3617850569f.patch: Remove. * Bump watch version from 3 to 4 * Bump Standards-Version to 4.6.1. flask (2.0.1-4) unstable; urgency=medium * Team upload. * [e10f738] run upstream tests as autopkgtest -- James Page <email address hidden> Tue, 23 Aug 2022 11:36:35 +0100
Upload details
- Uploaded by:
- James Page
- Uploaded to:
- Kinetic
- Original maintainer:
- Ubuntu Developers
- Architectures:
- all
- Section:
- python
- Urgency:
- Medium Urgency
See full publishing history Publishing
Series | Published | Component | Section | |
---|---|---|---|---|
Kinetic | release | main | python |
Downloads
File | Size | SHA-256 Checksum |
---|---|---|
flask_2.0.3.orig.tar.gz | 614.6 KiB | e1120c228ca2f553b470df4a5fa927ab66258467526069981b3eb0a91902687d |
flask_2.0.3-1ubuntu1.debian.tar.xz | 7.4 KiB | 5ecd5a1e95161c76351e82738c8fc518b51b5e97ea590cff6945fc5d9a1fd54c |
flask_2.0.3-1ubuntu1.dsc | 2.5 KiB | 9dbd86aa064c313a5975878c8cd084afe4433c46b781ec28af3d1e7cd2583356 |
Available diffs
- diff from 2.0.1-3ubuntu1 to 2.0.3-1ubuntu1 (38.0 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.