Skip to content

Commit 691221d

Browse files
authored
docs: update supported Python version to 3.9+ (#413)
1 parent 88024ca commit 691221d

3 files changed

Lines changed: 13 additions & 3 deletions

File tree

src/index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ <h1 class="block-title display-1">Falcon</h1>
136136
</div>
137137
<h3>Fast</h3>
138138
<p class="lead">
139-
Falcon is a blazing fast, minimalist Python web API framework for building robust app backends and microservices. The framework works great with both asyncio (<a href="https://asgi.readthedocs.io" target="_blank">ASGI</a>) and gevent/meinheld (<a href="https://wsgi.readthedocs.io" target="_blank">WSGI</a>).
139+
Falcon is a blazing fast, minimalist Python web API framework for building robust app backends and microservices. The framework works great with both asyncio (<a href="https://asgi.readthedocs.io" target="_blank">ASGI</a>) and <a href="https://wsgi.readthedocs.io" target="_blank">WSGI</a>.
140140
</p>
141141
</li>
142142

@@ -190,7 +190,7 @@ <h3>Extensible</h3>
190190
</div>
191191
<h3>Compatible</h3>
192192
<p class="lead">
193-
Thanks to <a href="https://asgi.readthedocs.io" target="_blank">ASGI</a> and <a href="https://wsgi.readthedocs.io" target="_blank">WSGI</a>, Falcon runs on a large variety of web servers and platforms. Falcon works great with CPython 3.5+. Or try <a href="https://www.pypy.org" target="_blank">PyPy</a> for an extra speed boost!
193+
Thanks to <a href="https://asgi.readthedocs.io" target="_blank">ASGI</a> and <a href="https://wsgi.readthedocs.io" target="_blank">WSGI</a>, Falcon runs on a large variety of web servers and platforms. Falcon works great with CPython 3.9+. Or try <a href="https://www.pypy.org" target="_blank">PyPy</a> for an extra speed boost!
194194
</p>
195195
</li>
196196

@@ -269,7 +269,7 @@ <h1 class="display-4 section-title">Features</h1>
269269
<li>Idiomatic HTTP error responses</li>
270270
<li>Straightforward exception handling</li>
271271
<li>WSGI/ASGI testing helpers and mocks</li>
272-
<li>CPython 3.5+ and PyPy 3.5+ support</li>
272+
<li>CPython 3.9+ and PyPy 3.9+ support</li>
273273
</ul>
274274

275275
</div>

webpack-dev.config.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,11 @@ const config = {
5454
}
5555
]
5656
},
57+
performance: {
58+
maxAssetSize: 5000000,
59+
maxEntrypointSize: 5000000,
60+
hints: 'warning',
61+
},
5762
plugins: [
5863
new CleanWebpackPlugin(),
5964
new CopyPlugin({

webpack-prod.config.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,11 @@ const config = {
5454
}
5555
]
5656
},
57+
performance: {
58+
maxAssetSize: 500000,
59+
maxEntrypointSize: 500000,
60+
hints: 'warning',
61+
},
5762
plugins: [
5863
new CleanWebpackPlugin(),
5964
new CopyPlugin({

0 commit comments

Comments
 (0)