Skip to content

Commit

Permalink
bump minimal PyMySQL version to 1.0.0 (#713)
Browse files Browse the repository at this point in the history
while we do not yet strictly require it this simplifies maintenance.
e.g. the xfailing test from #712 gets a different error type starting with PyMySQL 0.10.0.
it will also allow us to adopt the backwards incompatible changes from PyMySQL 0.10 and 1.0.
as our test suite only runs with the latest supported PyMySQL version we currently cannot
reliably test older versions either.
  • Loading branch information
Nothing4You committed Jan 30, 2022
1 parent 196e325 commit c93fad3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ To be included in 1.0.0 (unreleased)
* Fix SSCursor raising InternalError when last result was not fully retrieved #635
* Remove deprecated no_delay argument #702
* Support PyMySQL up to version 1.0.2 #643
* Bump minimal PyMySQL version to 1.0.0 #713


0.0.22 (2021-11-14)
Expand Down
2 changes: 1 addition & 1 deletion requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ ipdb==0.13.9
pytest==6.2.5
pytest-cov==3.0.0
pytest-sugar==0.9.4
PyMySQL>=0.9,<=1.0.2
PyMySQL>=1.0.0,<=1.0.2
sphinx>=1.8.1, <4.4.1
sphinxcontrib-asyncio==0.3.0
sqlalchemy>1.2.12,<=1.3.16
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from setuptools import setup, find_packages


install_requires = ['PyMySQL>=0.9,<=1.0.2']
install_requires = ['PyMySQL>=1.0.0,<=1.0.2']

PY_VER = sys.version_info

Expand Down

0 comments on commit c93fad3

Please sign in to comment.