Skip to content

Commit 1f8a16c

Browse files
Update project structure by adding AWS and Arrow submodules, enhancing distribution scripts, and implementing garbage collection CLI command. Remove obsolete requirements and setup files, and introduce new test and documentation files.
1 parent c82fd70 commit 1f8a16c

94 files changed

Lines changed: 17860 additions & 816 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -243,6 +243,7 @@ poetry.toml
243243

244244
# ruff
245245
.ruff_cache/
246+
vendor/
246247

247248
# LSP config files
248249
pyrightconfig.json

.gitmodules

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,40 @@
11
[submodule "npy_array"]
22
path = npy_array
33
url = https://github.com/oysteijo/npy_array
4+
[submodule "arrow"]
5+
path = vendor/arrow
6+
url = https://github.com/apache/arrow.git
7+
[submodule "vendor/aws/aws-c-common"]
8+
path = vendor/aws/aws-c-common
9+
url = https://github.com/awslabs/aws-c-common.git
10+
[submodule "vendor/aws/aws-c-s3"]
11+
path = vendor/aws/aws-c-s3
12+
url = https://github.com/awslabs/aws-c-s3.git
13+
[submodule "vendor/aws/aws-c-auth"]
14+
path = vendor/aws/aws-c-auth
15+
url = https://github.com/awslabs/aws-c-auth.git
16+
[submodule "vendor/aws/aws-c-io"]
17+
path = vendor/aws/aws-c-io
18+
url = https://github.com/awslabs/aws-c-io.git
19+
[submodule "vendor/aws/aws-c-cal"]
20+
path = vendor/aws/aws-c-cal
21+
url = https://github.com/awslabs/aws-c-cal.git
22+
[submodule "vendor/aws/aws-c-http"]
23+
path = vendor/aws/aws-c-http
24+
url = https://github.com/awslabs/aws-c-http.git
25+
[submodule "vendor/aws/s2n-tls"]
26+
path = vendor/aws/s2n-tls
27+
url = https://github.com/aws/s2n-tls.git
28+
[submodule "vendor/aws/aws-lc"]
29+
path = vendor/aws/aws-lc
30+
url = https://github.com/aws/aws-lc.git
31+
32+
[submodule "vendor/aws/aws-checksums"]
33+
path = vendor/aws/aws-checksums
34+
url = https://github.com/awslabs/aws-checksums.git
35+
[submodule "vendor/aws/aws-c-compression"]
36+
path = vendor/aws/aws-c-compression
37+
url = https://github.com/awslabs/aws-c-compression.git
38+
[submodule "vendor/aws/aws-c-sdkutils"]
39+
path = vendor/aws/aws-c-sdkutils
40+
url = https://github.com/awslabs/aws-c-sdkutils.git

0 commit comments

Comments
 (0)