Skip to content

Commit 614937a

Browse files
Drop tests for MySQL 5.6 since it has reached EOL.
1 parent efeb90b commit 614937a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/development.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
strategy:
1616
matrix:
1717
py_ver: ["3.8"]
18-
mysql_ver: ["8.0", "5.7", "5.6"]
18+
mysql_ver: ["8.0", "5.7"]
1919
include:
2020
- py_ver: "3.7"
2121
mysql_ver: "5.7"

tests/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ def setup_package():
101101
conn_root.query(
102102
"GRANT SELECT ON `djtest%%`.* TO 'djssl'@'%%';")
103103
else:
104-
# grant permissions. For mysql5.6/5.7 this also automatically creates user
104+
# grant permissions. For MySQL 5.7 this also automatically creates user
105105
# if not exists
106106
conn_root.query("""
107107
GRANT ALL PRIVILEGES ON `djtest%%`.* TO 'datajoint'@'%%'

0 commit comments

Comments
 (0)