Skip to content

Commit 3df217b

Browse files
Fix merge conflicts.
2 parents 661533f + a1e0da7 commit 3df217b

17 files changed

+71
-533
lines changed

CHANGELOG.md

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,18 @@
11
## Release notes
22

33
### 0.14.0 -- Feb 10, 2023
4+
- Added - `json` data type ([#245](https://github.com/datajoint/datajoint-python/issues/245)) PR [#1051](https://github.com/datajoint/datajoint-python/pull/1051)
45
- Fixed - Activating a schema requires all tables to exist even if `create_tables=False` PR [#1058](https://github.com/datajoint/datajoint-python/pull/1058)
56
- Changed - Populate call with `reserve_jobs=True` to exclude `error` and `ignore` keys - PR [#1062](https://github.com/datajoint/datajoint-python/pull/1062)
67
- Added - Support for inserting data with CSV files - PR [#1067](https://github.com/datajoint/datajoint-python/pull/1067)
78
- Changed - Switch testing image from `pydev` to `djtest` PR [#1012](https://github.com/datajoint/datajoint-python/pull/1012)
89
- Added - DevContainer development environment compatible with GH Codespaces PR [1071](https://github.com/datajoint/datajoint-python/pull/1071)
9-
- Added - `json` data type ([#245](https://github.com/datajoint/datajoint-python/issues/245)) PR [#1051](https://github.com/datajoint/datajoint-python/pull/1051)
10-
- Fixed - Convert lingering prints by replacing with logs PR [#1051](https://github.com/datajoint/datajoint-python/pull/1051)
11-
- Changed - `table.progress()` defaults to no stdout PR [#1051](https://github.com/datajoint/datajoint-python/pull/1051)
12-
- Changed - `table.describe()` defaults to no stdout PR [#1051](https://github.com/datajoint/datajoint-python/pull/1051)
10+
- Fixed - Convert lingering prints by replacing with logs PR [#1073](https://github.com/datajoint/datajoint-python/pull/1073)
11+
- Changed - `table.progress()` defaults to no stdout PR [#1073](https://github.com/datajoint/datajoint-python/pull/1073)
12+
- Changed - `table.describe()` defaults to no stdout PR [#1073](https://github.com/datajoint/datajoint-python/pull/1073)
13+
- Deprecated - `table._update()` PR [#1073](https://github.com/datajoint/datajoint-python/pull/1073)
14+
- Deprecated - old-style foreign key syntax PR [#1073](https://github.com/datajoint/datajoint-python/pull/1073)
15+
- Deprecated - `dj.migrate_dj011_external_blob_storage_to_dj012()` PR [#1073](https://github.com/datajoint/datajoint-python/pull/1073)
1316

1417
### 0.13.8 -- Sep 21, 2022
1518
- Added - New documentation structure based on markdown PR [#1052](https://github.com/datajoint/datajoint-python/pull/1052)

LNX-docker-compose.yml

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# PY_VER=3.8 MYSQL_VER=5.7 DISTRO=alpine MINIO_VER=RELEASE.2022-08-11T04-37-28Z HOST_UID=$(id -u) docker compose -f LNX-docker-compose.yml up --exit-code-from app --build
22
version: "2.4"
3-
x-net: &net
3+
x-net:
4+
&net
45
networks:
56
- main
67
services:
@@ -14,7 +15,7 @@ services:
1415
# volumes:
1516
# - ./mysql/data:/var/lib/mysql
1617
healthcheck:
17-
test: ["CMD", "mysqladmin" ,"ping", "-h", "localhost"]
18+
test: [ "CMD", "mysqladmin", "ping", "-h", "localhost" ]
1819
timeout: 30s
1920
retries: 5
2021
interval: 15s
@@ -31,7 +32,13 @@ services:
3132
# - ./minio/data:/data
3233
command: server --address ":9000" /data
3334
healthcheck:
34-
test: ["CMD", "curl", "--fail", "http://minio:9000/minio/health/live"]
35+
test:
36+
[
37+
"CMD",
38+
"curl",
39+
"--fail",
40+
"http://minio:9000/minio/health/live"
41+
]
3542
timeout: 30s
3643
retries: 5
3744
interval: 15s

datajoint/__init__.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,6 @@
5151
"key",
5252
"key_hash",
5353
"logger",
54-
"migrate_dj011_external_blob_storage_to_dj012",
5554
]
5655

5756
from .logging import logger
@@ -71,7 +70,6 @@
7170
from .attribute_adapter import AttributeAdapter
7271
from . import errors
7372
from .errors import DataJointError
74-
from .migrate import migrate_dj011_external_blob_storage_to_dj012
7573

7674
ERD = Di = Diagram # Aliases for Diagram
7775
schema = Schema # Aliases for Schema

datajoint/migrate.py

Lines changed: 0 additions & 204 deletions
This file was deleted.

datajoint/table.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -670,7 +670,7 @@ def drop(self):
670670
if do_drop:
671671
for table in reversed(tables):
672672
FreeTable(self.connection, table).drop_quick()
673-
logger.info("Tables dropped. Restart kernel.")
673+
logger.info("Tables dropped. Restart kernel.")
674674

675675
@property
676676
def size_on_disk(self):

local-docker-compose.yml

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# MYSQL_VER=5.7 MINIO_VER=RELEASE.2022-08-11T04-37-28Z docker compose -f local-docker-compose.yml up --build
22
version: "2.4"
3-
x-net: &net
3+
x-net:
4+
&net
45
networks:
56
- main
67
services:
@@ -15,7 +16,7 @@ services:
1516
# volumes:
1617
# - ./mysql/data:/var/lib/mysql
1718
healthcheck:
18-
test: ["CMD", "mysqladmin", "ping", "-h", "localhost"]
19+
test: [ "CMD", "mysqladmin", "ping", "-h", "localhost" ]
1920
timeout: 30s
2021
retries: 5
2122
interval: 15s
@@ -33,7 +34,13 @@ services:
3334
# - ./minio/config:/root/.minio
3435
command: server --address ":9000" /data
3536
healthcheck:
36-
test: ["CMD", "curl", "--fail", "http://minio:9000/minio/health/live"]
37+
test:
38+
[
39+
"CMD",
40+
"curl",
41+
"--fail",
42+
"http://minio:9000/minio/health/live"
43+
]
3744
timeout: 30s
3845
retries: 5
3946
interval: 15s

0 commit comments

Comments
 (0)