amulet-core 1.9.24__py3-none-any.whl → 1.9.26__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of amulet-core might be problematic. Click here for more details.

amulet/_version.py CHANGED
@@ -8,11 +8,11 @@ import json
8
8
 
9
9
  version_json = '''
10
10
  {
11
- "date": "2024-06-12T15:06:45+0100",
11
+ "date": "2024-10-24T14:01:25+0100",
12
12
  "dirty": false,
13
13
  "error": null,
14
- "full-revisionid": "53bfff77d0216ecee7dcad08f1d30f058bb082af",
15
- "version": "1.9.24"
14
+ "full-revisionid": "e938f1fcf559c70e59c5caf7cf05bfb1d0ca11f9",
15
+ "version": "1.9.26"
16
16
  }
17
17
  ''' # END VERSION_JSON
18
18
 
@@ -0,0 +1,15 @@
1
+ from __future__ import annotations
2
+
3
+ from .leveldb_40 import (
4
+ LevelDB40Interface as ParentInterface,
5
+ )
6
+
7
+
8
+ class LevelDB41Interface(ParentInterface):
9
+ chunk_version = 41
10
+
11
+ def __init__(self):
12
+ super().__init__()
13
+
14
+
15
+ export = LevelDB41Interface
@@ -49,7 +49,8 @@ chunk_version_to_max_version: Dict[
49
49
  38: ((1, 17, 0, 0), (1, 17, 0, 0)), # ?
50
50
  # continue without experimental gameplay
51
51
  39: ((1, 18, 0, 0), (1, 18, 29, 999)),
52
- 40: ((1, 18, 30, 0), (999, 999, 999, 999)),
52
+ 40: ((1, 18, 30, 0), (1, 21, 31, 999)),
53
+ 41: ((1, 21, 40, 0), (999, 999, 999, 999)),
53
54
  } # TODO: fill this list with the actual last game version number each chunk version was last used in
54
55
 
55
56
 
@@ -13,7 +13,7 @@ class Anvil3463Interface(ParentInterface):
13
13
 
14
14
  @staticmethod
15
15
  def minor_is_valid(key: int):
16
- return 3454 <= key <= 3900
16
+ return 3454 <= key <= 4100
17
17
 
18
18
 
19
19
  export = Anvil3463Interface
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: amulet-core
3
- Version: 1.9.24
3
+ Version: 1.9.26
4
4
  Summary: A Python library for reading/writing Minecraft's various save formats.
5
5
  Home-page: https://www.amuletmc.com
6
6
  Author: James Clare, Ben Gothard et al.
@@ -10,20 +10,20 @@ Classifier: Programming Language :: Python :: 3
10
10
  Classifier: Operating System :: OS Independent
11
11
  Requires-Python: >=3.9
12
12
  Description-Content-Type: text/markdown
13
- Requires-Dist: numpy ~=1.17
14
- Requires-Dist: amulet-nbt ~=2.0
15
- Requires-Dist: pymctranslate ~=1.2
16
- Requires-Dist: portalocker ~=2.4
17
- Requires-Dist: amulet-leveldb ~=1.0b0
18
- Requires-Dist: platformdirs ~=3.1
19
- Requires-Dist: lz4 ~=4.3
13
+ Requires-Dist: numpy~=1.17
14
+ Requires-Dist: amulet-nbt~=2.0
15
+ Requires-Dist: pymctranslate~=1.2
16
+ Requires-Dist: portalocker~=2.4
17
+ Requires-Dist: amulet-leveldb~=1.0b0
18
+ Requires-Dist: platformdirs~=3.1
19
+ Requires-Dist: lz4~=4.3
20
20
  Provides-Extra: dev
21
- Requires-Dist: black >=22.3 ; extra == 'dev'
22
- Requires-Dist: pre-commit >=1.11.1 ; extra == 'dev'
21
+ Requires-Dist: black>=22.3; extra == "dev"
22
+ Requires-Dist: pre-commit>=1.11.1; extra == "dev"
23
23
  Provides-Extra: docs
24
- Requires-Dist: Sphinx >=1.7.4 ; extra == 'docs'
25
- Requires-Dist: sphinx-autodoc-typehints >=1.3.0 ; extra == 'docs'
26
- Requires-Dist: sphinx-rtd-theme >=0.3.1 ; extra == 'docs'
24
+ Requires-Dist: Sphinx>=1.7.4; extra == "docs"
25
+ Requires-Dist: sphinx-autodoc-typehints>=1.3.0; extra == "docs"
26
+ Requires-Dist: sphinx-rtd-theme>=0.3.1; extra == "docs"
27
27
 
28
28
  # Amulet Core
29
29
 
@@ -1,5 +1,5 @@
1
1
  amulet/__init__.py,sha256=sWKAqhofjzTINMJB22nXeBTITznt4H9rM3ZaaAn2SB4,866
2
- amulet/_version.py,sha256=4Y-mFAG8O_9VOdSUtO19h671x9G2O4qwb87cgItpoME,498
2
+ amulet/_version.py,sha256=65utV4Q3qWJoy1GQh7DQAQrLP06mvy1Y5HsEr_wFn40,498
3
3
  amulet/__pyinstaller/__init__.py,sha256=JJOm9J0BoU_vwoYyoHgd8vwSdiO5SGlHHWH6EQK6sc4,41
4
4
  amulet/__pyinstaller/hook-amulet.py,sha256=5s6LZxxd47zNsrsJi-PORR7Q6QC079D7pcTkSn1uzCs,158
5
5
  amulet/api/__init__.py,sha256=HJ88KU13JNYES9sptkz0la0OsoRvBGUavuOanaZ_RyM,46
@@ -134,12 +134,13 @@ amulet/level/formats/leveldb_world/interface/chunk/leveldb_38.py,sha256=6pXiB4xj
134
134
  amulet/level/formats/leveldb_world/interface/chunk/leveldb_39.py,sha256=oMuxfSNRw5rdVJ-u5vH07oPyETsdWgogIaDk9A4FCgk,205
135
135
  amulet/level/formats/leveldb_world/interface/chunk/leveldb_4.py,sha256=GxviTSjDV1IOGehF3XS6hZq8clFfqeDSoY2LBClhK7k,183
136
136
  amulet/level/formats/leveldb_world/interface/chunk/leveldb_40.py,sha256=UBuEEWC1REcB7Alxw32e-C7s6NyvnOxJSD5-G81vV2Q,304
137
+ amulet/level/formats/leveldb_world/interface/chunk/leveldb_41.py,sha256=jQhNW3twz0Bt9raTOBwVBPPPGbKD2utvWdZ08I89CXI,257
137
138
  amulet/level/formats/leveldb_world/interface/chunk/leveldb_5.py,sha256=o6Qh7-G1y1UB8S0X8_cZoUfKxghv9ne6rWYitDaR-rQ,183
138
139
  amulet/level/formats/leveldb_world/interface/chunk/leveldb_6.py,sha256=J6wSGOOVrX03896pah7p5Erlu3xF529TBkt2i2d_at8,183
139
140
  amulet/level/formats/leveldb_world/interface/chunk/leveldb_7.py,sha256=N71tlja87lUwYHnMFk6OZJzuAiLBapFWaRTo1aXUcUg,183
140
141
  amulet/level/formats/leveldb_world/interface/chunk/leveldb_8.py,sha256=bkdFu_RwCfoy56hSCTSxQ--yYUhl4BnycVti_B0VOJk,7326
141
142
  amulet/level/formats/leveldb_world/interface/chunk/leveldb_9.py,sha256=i4hAlxvCm_qJ81o0ZfoeaK2JLY8rKWttESjJHPnJXzY,455
142
- amulet/level/formats/leveldb_world/interface/chunk/leveldb_chunk_versions.py,sha256=ovG24Ci6PNSlNnQqh-Qh9c8v_3ulFzDJG5khYbWG9bA,3656
143
+ amulet/level/formats/leveldb_world/interface/chunk/leveldb_chunk_versions.py,sha256=msLWkcfScwVWTJc3PV1nUD2G5jFepD3OdXuErYp4j0E,3700
143
144
  amulet/level/formats/mcstructure/__init__.py,sha256=cRwoW6W93uFFmGHJgYOr8w5Z05b2zYWsMKx-qf_Cjao,88
144
145
  amulet/level/formats/mcstructure/chunk.py,sha256=rqdfWsNt8CtCBzxgs_8Gkjbc1WUHrab-pQ37_F5DPWU,1378
145
146
  amulet/level/formats/mcstructure/format_wrapper.py,sha256=2DazC0Rrl9QpensHj0f1UrVq2wXP05itY7D7RCvIrF0,14833
@@ -174,7 +175,7 @@ amulet/level/interfaces/chunk/anvil/anvil_2529.py,sha256=UTtQkxcM3jUdSWpy02gehEh
174
175
  amulet/level/interfaces/chunk/anvil/anvil_2681.py,sha256=w9lz9014E3yNFdsLUFvF4UP1IE_OzdwFp8lZ0Zl5tCg,2319
175
176
  amulet/level/interfaces/chunk/anvil/anvil_2709.py,sha256=qRvOb67bjyh-HcSEUiqlf1YKMqPfZjeW98Aid92YQy8,417
176
177
  amulet/level/interfaces/chunk/anvil/anvil_2844.py,sha256=wyl97xOVr2tARqEgNGe0yH9fZNVyeNocH_5ScOX-gD0,10292
177
- amulet/level/interfaces/chunk/anvil/anvil_3463.py,sha256=DXduuopYNspAjxmHuQkPzeJo7_ZGPQkV6IxEWktJLEM,423
178
+ amulet/level/interfaces/chunk/anvil/anvil_3463.py,sha256=kCxLnhHm_6uz_36Qo7ohS615hKKGApKcfa4_NIyzGNc,423
178
179
  amulet/level/interfaces/chunk/anvil/anvil_na.py,sha256=UcSd3LWjGdDmTvTfKF02UsAtnjLdQc1l_ZN3GpP3LHg,22007
179
180
  amulet/level/interfaces/chunk/anvil/base_anvil_interface.py,sha256=fG3nEkRxY9O-yvlBPFJW1abTb8Vw6Lhh7rjMJf7c1SA,11979
180
181
  amulet/level/translators/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -201,8 +202,8 @@ amulet/utils/generator.py,sha256=2pKToghl8irYozX5hBJYtjTQVzhljznPCi42hQKRGDQ,364
201
202
  amulet/utils/matrix.py,sha256=KSqluO0H6oHUfe0pU4Esv67pOmHFurK2BDOrZAeNxg8,7665
202
203
  amulet/utils/numpy_helpers.py,sha256=fM0rjZxbUqoTMTrFooZEVVhHfsqv0j_7KPGsjVq4ReM,1232
203
204
  amulet/utils/world_utils.py,sha256=xb6JPrrbwDF0_y4ZYjTJ1ieydL3COzzLosTgcxDDyRc,12559
204
- amulet_core-1.9.24.dist-info/METADATA,sha256=yZTawJxHhDtzI_E7oOF-aQdVLvTPQrJkBHX8lYsIF4o,4287
205
- amulet_core-1.9.24.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
206
- amulet_core-1.9.24.dist-info/entry_points.txt,sha256=53zFNThTPzI8f9ertsyU2DoUpxdWU8rjOA_Cu4YH5Vk,63
207
- amulet_core-1.9.24.dist-info/top_level.txt,sha256=3ZqHzNDiIb9kV8TwSeeXxK_9haSrsu631Qe4ndDo0rc,7
208
- amulet_core-1.9.24.dist-info/RECORD,,
205
+ amulet_core-1.9.26.dist-info/METADATA,sha256=bj28ZShMc43-kTBv4g3tHznaOLkHqvJ6hmI5JEtMzUA,4270
206
+ amulet_core-1.9.26.dist-info/WHEEL,sha256=OVMc5UfuAQiSplgO0_WdW7vXVGAt9Hdd6qtN4HotdyA,91
207
+ amulet_core-1.9.26.dist-info/entry_points.txt,sha256=53zFNThTPzI8f9ertsyU2DoUpxdWU8rjOA_Cu4YH5Vk,63
208
+ amulet_core-1.9.26.dist-info/top_level.txt,sha256=3ZqHzNDiIb9kV8TwSeeXxK_9haSrsu631Qe4ndDo0rc,7
209
+ amulet_core-1.9.26.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.43.0)
2
+ Generator: setuptools (75.2.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5