Skip to content

Commit 939ca8b

Browse files
Merge pull request #861 from ixcat/issue-829
minimum python -> 3.6 (#829)
2 parents ba8b85b + 53b10d3 commit 939ca8b

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

.github/workflows/development.yaml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,6 @@ jobs:
2121
mysql_ver: "5.7"
2222
- py_ver: "3.6"
2323
mysql_ver: "5.7"
24-
- py_ver: "3.5"
25-
mysql_ver: "5.7"
2624
steps:
2725
- uses: actions/checkout@v2
2826
- name: Set up Python ${{matrix.py_ver}}
@@ -50,4 +48,4 @@ jobs:
5048
- name: Run style tests
5149
run: |
5250
flake8 --ignore=E121,E123,E126,E226,E24,E704,W503,W504,E722,F401,W605 datajoint \
53-
--count --max-complexity=62 --max-line-length=127 --statistics
51+
--count --max-complexity=62 --max-line-length=127 --statistics

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
* Allow updating specified secondary attributes using `update1` PR #763
66
* add dj.key_hash reference to dj.hash.key_hash, treat as 'public api'
77
* default enable_python_native_blobs to True
8+
* Remove python 3.5 support
89

910
### 0.12.8 -- Jan 12, 2021
1011
* table.children, .parents, .descendents, and ancestors can return queryable objects. PR #833

docs-parts/intro/Releases_lang1.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
----------------------
33
* Support DataJoint datatype and connection plugins (#715, #729) PR 730, #735
44
* Allow updating specified secondary attributes using `update1` PR #763
5+
* add dj.key_hash reference to dj.hash.key_hash, treat as 'public api'
6+
* default enable_python_native_blobs to True
7+
* Remove python 3.5 support
58

69
0.12.8 -- Jan 12, 2021
710
----------------------

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from os import path
44
import sys
55

6-
min_py_version = (3, 5)
6+
min_py_version = (3, 6)
77

88
if sys.version_info < min_py_version:
99
sys.exit('DataJoint is only supported for Python {}.{} or higher'.format(*min_py_version))

0 commit comments

Comments
 (0)