File tree Expand file tree Collapse file tree 4 files changed +9
-7
lines changed Expand file tree Collapse file tree 4 files changed +9
-7
lines changed Original file line number Diff line number Diff line change 11# web.py changelog
22
3- ## 2020-XX-XX 0.62
3+ ## 2020-11-09 0.62
44
5+ * Fixed: application.load() assumes ctx.path will be a latin1 string #687
56* Fixed: can not reset session data to same value as initialized. #683
67* Fixed: can not set session expire time. #655
78* Fixed: not export session store `MemoryStore`.
Original file line number Diff line number Diff line change @@ -5,11 +5,11 @@ Visit http://webpy.org/ for more information.
55[ ![ build status] ( https://secure.travis-ci.org/webpy/webpy.png?branch=master )] ( https://travis-ci.org/webpy/webpy )
66[ ![ Codecov Test Coverage] ( https://codecov.io/gh/webpy/webpy/branch/master/graphs/badge.svg?style=flat )] ( https://codecov.io/gh/webpy/webpy )
77
8- The latest stable release ` 0.61 ` only supports Python >= 3.6 .
8+ The latest stable release ` 0.62 ` only supports Python >= 3.5 .
99To install it, please run:
1010```
1111# For Python 3
12- python3 -m pip install web.py==0.61
12+ python3 -m pip install web.py==0.62
1313```
1414
1515If you are still using Python 2.7, then please use web.py version 0.51
@@ -22,9 +22,10 @@ python2 -m pip install web.py==0.51
2222You can also download it from [ GitHub Releases] ( https://github.com/webpy/webpy/releases )
2323page, then install it manually:
2424```
25- unzip webpy-0.61 .zip
26- cd webpy-0.61 /
25+ unzip webpy-0.62 .zip
26+ cd webpy-0.62 /
2727python3 setup.py install
2828```
2929
3030Note: ` 0.5x ` (e.g. 0.50, 0.51) are our last releases which support Python 2.
31+ Note: ` 0.6x ` (e.g. 0.60, 0.61, 0.62) are our last releases which support Python 3.5.
Original file line number Diff line number Diff line change 2727 long_description_content_type = "text/markdown" ,
2828 license = "Public domain" ,
2929 platforms = ["any" ],
30- python_requires = ">=3.6 " ,
30+ python_requires = ">=3.5 " ,
3131 classifiers = [
3232 "License :: Public Domain" ,
3333 "Programming Language :: Python" ,
Original file line number Diff line number Diff line change 2424from .webapi import * # noqa: F401,F403
2525from .wsgi import * # noqa: F401,F403
2626
27- __version__ = "0.61 "
27+ __version__ = "0.62 "
2828__author__ = [
2929 "Aaron Swartz <me@aaronsw.com>" ,
3030 "Anand Chitipothu <anandology@gmail.com>" ,
You can’t perform that action at this time.
0 commit comments