Skip to content

Commit b54ee22

Browse files
authored
Update docs with supported libraries (#266)
* Update index.rst * version pinning pymysql Pymysql v1.0.0 only supports python3.6+ https://github.com/PyMySQL/PyMySQL/blob/master/CHANGELOG.md * Update tox.ini * fixing pymysql versions
1 parent e121217 commit b54ee22

File tree

2 files changed

+11
-3
lines changed

2 files changed

+11
-3
lines changed

docs/index.rst

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,16 @@ Currently supported web frameworks and libraries:
2222
* aioboto3/aiobotocore
2323
* aiohttp >=2.3
2424
* boto3/botocore
25+
* Bottle
2526
* Django >=1.10
2627
* Flask
27-
* httplib
28+
* httplib/http.client
2829
* mysql-connector
29-
* Pynamodb
30+
* pg8000
31+
* psycopg2
32+
* pymongo
33+
* pymysql
34+
* pynamodb
3035
* requests
3136
* SQLAlchemy
3237
* sqlite3

tox.ini

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ deps =
2626
django31: Django==3.1.*
2727
django{22,30,31}: django-fake-model
2828
pynamodb >= 3.3.1
29-
pymysql
3029
psycopg2
3130
pg8000
3231
testing.postgresql
@@ -36,6 +35,10 @@ deps =
3635

3736
# Python2 only deps
3837
py{27}: enum34
38+
39+
# pymysql deps
40+
py{27,34,35}: pymysql < 1.0.0
41+
py{36,37,38}: pymysql >= 1.0.0
3942

4043
# Python3.5+ only deps
4144
py{35,36,37,38}: aiohttp >= 3.0.0

0 commit comments

Comments
 (0)