Skip to content

Commit 70fd847

Browse files
Add a note about string encoding (#12)
* Add a note about string encoding * Bump python versions
1 parent f8450a2 commit 70fd847

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/python-unittests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ${{ matrix.os }}
88
strategy:
99
matrix:
10-
python-version: [3.6, 3.7, 3.8, 3.9]
10+
python-version: ['3.9', '3.10', '3.11', '3.12']
1111
os: [windows-latest, macos-latest, ubuntu-latest]
1212
steps:
1313
- uses: actions/checkout@v2
@@ -20,4 +20,4 @@ jobs:
2020
python -m pip install --upgrade pip
2121
pip install -r python/requirements.txt
2222
- name: Test with unittest
23-
run: python -m unittest python/tests.py
23+
run: python -m unittest python/tests.py

specifications/version_0/readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Construction Format Specification (Version 0)
22

3-
All data is stored in big endian format.
3+
All data is stored in big endian format. NBT strings are encoded in Java's modified utf-8 format.
44

55
The overall structure of the file is as follows:
66

0 commit comments

Comments
 (0)