jetxl 0.2.1a0__tar.gz
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.
- jetxl-0.2.1a0/.github/workflows/build_and_publish.yml +113 -0
- jetxl-0.2.1a0/.github/workflows/release-please.yml +27 -0
- jetxl-0.2.1a0/.gitignore +147 -0
- jetxl-0.2.1a0/.release-please-config.json +7 -0
- jetxl-0.2.1a0/.release-please-manifest.json +3 -0
- jetxl-0.2.1a0/CHANGELOG.md +25 -0
- jetxl-0.2.1a0/Cargo.lock +1542 -0
- jetxl-0.2.1a0/Cargo.toml +39 -0
- jetxl-0.2.1a0/LICENSE +201 -0
- jetxl-0.2.1a0/PKG-INFO +15 -0
- jetxl-0.2.1a0/README.md +3045 -0
- jetxl-0.2.1a0/benchmark/execution_time.png +0 -0
- jetxl-0.2.1a0/jetxl.pyi +2234 -0
- jetxl-0.2.1a0/pyproject.toml +23 -0
- jetxl-0.2.1a0/requirements.txt +1 -0
- jetxl-0.2.1a0/src/lib.rs +1408 -0
- jetxl-0.2.1a0/src/styles.rs +985 -0
- jetxl-0.2.1a0/src/types.rs +125 -0
- jetxl-0.2.1a0/src/writer.rs +1135 -0
- jetxl-0.2.1a0/src/xml.rs +3007 -0
|
@@ -0,0 +1,113 @@
|
|
|
1
|
+
# check runners here https://github.com/actions/runner-images/tree/main
|
|
2
|
+
|
|
3
|
+
name: build_and_publish
|
|
4
|
+
|
|
5
|
+
on:
|
|
6
|
+
release:
|
|
7
|
+
types: [published]
|
|
8
|
+
|
|
9
|
+
workflow_dispatch:
|
|
10
|
+
|
|
11
|
+
env:
|
|
12
|
+
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
|
|
13
|
+
|
|
14
|
+
jobs:
|
|
15
|
+
wheels:
|
|
16
|
+
name: Build wheels
|
|
17
|
+
runs-on: ${{ matrix.os }}
|
|
18
|
+
|
|
19
|
+
strategy:
|
|
20
|
+
fail-fast: true
|
|
21
|
+
|
|
22
|
+
matrix:
|
|
23
|
+
include:
|
|
24
|
+
# Linux
|
|
25
|
+
- os: ubuntu-24.04
|
|
26
|
+
target: x86_64
|
|
27
|
+
|
|
28
|
+
# Windows
|
|
29
|
+
- os: windows-2025-vs2026
|
|
30
|
+
target: x86_64
|
|
31
|
+
|
|
32
|
+
# macOS Intel
|
|
33
|
+
- os: macos-15-intel
|
|
34
|
+
target: x86_64
|
|
35
|
+
|
|
36
|
+
- os: macos-26-intel
|
|
37
|
+
target: x86_64
|
|
38
|
+
|
|
39
|
+
# macOS ARM64
|
|
40
|
+
- os: macos-14
|
|
41
|
+
target: aarch64
|
|
42
|
+
|
|
43
|
+
- os: macos-26
|
|
44
|
+
target: aarch64
|
|
45
|
+
|
|
46
|
+
steps:
|
|
47
|
+
- uses: actions/checkout@v4
|
|
48
|
+
|
|
49
|
+
# Install ALL supported Python versions
|
|
50
|
+
- uses: actions/setup-python@v5
|
|
51
|
+
with:
|
|
52
|
+
python-version: |
|
|
53
|
+
3.10
|
|
54
|
+
3.11
|
|
55
|
+
3.12
|
|
56
|
+
3.13
|
|
57
|
+
3.14
|
|
58
|
+
|
|
59
|
+
- name: Build wheels
|
|
60
|
+
uses: PyO3/maturin-action@v1
|
|
61
|
+
with:
|
|
62
|
+
target: ${{ matrix.target }}
|
|
63
|
+
args: --release --out dist --find-interpreter
|
|
64
|
+
|
|
65
|
+
- name: Upload wheels
|
|
66
|
+
uses: actions/upload-artifact@v4
|
|
67
|
+
with:
|
|
68
|
+
name: wheels-${{ matrix.os }}-${{ matrix.target }}
|
|
69
|
+
path: dist
|
|
70
|
+
|
|
71
|
+
sdist:
|
|
72
|
+
name: Build sdist
|
|
73
|
+
runs-on: ubuntu-latest
|
|
74
|
+
|
|
75
|
+
steps:
|
|
76
|
+
- uses: actions/checkout@v4
|
|
77
|
+
|
|
78
|
+
- name: Build sdist
|
|
79
|
+
uses: PyO3/maturin-action@v1
|
|
80
|
+
with:
|
|
81
|
+
command: sdist
|
|
82
|
+
args: --out dist
|
|
83
|
+
|
|
84
|
+
- name: Upload sdist
|
|
85
|
+
uses: actions/upload-artifact@v4
|
|
86
|
+
with:
|
|
87
|
+
name: sdist
|
|
88
|
+
path: dist
|
|
89
|
+
|
|
90
|
+
publish:
|
|
91
|
+
name: Publish to PyPI
|
|
92
|
+
needs: [wheels, sdist]
|
|
93
|
+
runs-on: ubuntu-latest
|
|
94
|
+
|
|
95
|
+
permissions:
|
|
96
|
+
id-token: write
|
|
97
|
+
|
|
98
|
+
environment:
|
|
99
|
+
name: pypi
|
|
100
|
+
|
|
101
|
+
steps:
|
|
102
|
+
- uses: actions/download-artifact@v4
|
|
103
|
+
with:
|
|
104
|
+
path: dist
|
|
105
|
+
|
|
106
|
+
- name: Show downloaded files
|
|
107
|
+
run: find dist -type f
|
|
108
|
+
|
|
109
|
+
- name: Publish package
|
|
110
|
+
uses: PyO3/maturin-action@v1
|
|
111
|
+
with:
|
|
112
|
+
command: upload
|
|
113
|
+
args: --non-interactive --skip-existing dist/**/*.whl dist/**/*.tar.gz
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
name: release-please
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
branches:
|
|
6
|
+
- master
|
|
7
|
+
|
|
8
|
+
workflow_dispatch:
|
|
9
|
+
|
|
10
|
+
permissions:
|
|
11
|
+
contents: write
|
|
12
|
+
pull-requests: write
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
env:
|
|
16
|
+
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
|
|
17
|
+
|
|
18
|
+
jobs:
|
|
19
|
+
release-please:
|
|
20
|
+
runs-on: ubuntu-latest
|
|
21
|
+
|
|
22
|
+
steps:
|
|
23
|
+
- uses: googleapis/release-please-action@v4
|
|
24
|
+
with:
|
|
25
|
+
config-file: release-please-config.json
|
|
26
|
+
manifest-file: .release-please-manifest.json
|
|
27
|
+
release-type: rust
|
jetxl-0.2.1a0/.gitignore
ADDED
|
@@ -0,0 +1,147 @@
|
|
|
1
|
+
*.pyc
|
|
2
|
+
*.ipynb
|
|
3
|
+
.vscode/*
|
|
4
|
+
instance/*
|
|
5
|
+
*.log
|
|
6
|
+
htmlcov/*
|
|
7
|
+
/junit*
|
|
8
|
+
/venv
|
|
9
|
+
uploads/*
|
|
10
|
+
# local_app.bat
|
|
11
|
+
output_data.xlsx
|
|
12
|
+
triage_output_file.xlsx
|
|
13
|
+
# *-Comments.xlsx
|
|
14
|
+
/target
|
|
15
|
+
# Byte-compiled / optimized / DLL files
|
|
16
|
+
__pycache__/
|
|
17
|
+
*.py[cod]
|
|
18
|
+
*$py.class
|
|
19
|
+
Cargo.lock
|
|
20
|
+
|
|
21
|
+
# C extensions
|
|
22
|
+
Customer_LLP.xlsx
|
|
23
|
+
LLP.xlsx
|
|
24
|
+
*.so
|
|
25
|
+
default_port.txt
|
|
26
|
+
|
|
27
|
+
# Distribution / packaging
|
|
28
|
+
.Python
|
|
29
|
+
build/
|
|
30
|
+
develop-eggs/
|
|
31
|
+
dist/
|
|
32
|
+
downloads/
|
|
33
|
+
eggs/
|
|
34
|
+
.eggs/
|
|
35
|
+
lib/
|
|
36
|
+
lib64/
|
|
37
|
+
parts/
|
|
38
|
+
sdist/
|
|
39
|
+
var/
|
|
40
|
+
.ruff_cache
|
|
41
|
+
wheels/
|
|
42
|
+
pip-wheel-metadata/
|
|
43
|
+
share/python-wheels/
|
|
44
|
+
*.egg-info/
|
|
45
|
+
.installed.cfg
|
|
46
|
+
*.egg
|
|
47
|
+
MANIFEST
|
|
48
|
+
|
|
49
|
+
# PyInstaller
|
|
50
|
+
# Usually these files are written by a python script from a template
|
|
51
|
+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
|
|
52
|
+
*.manifest
|
|
53
|
+
*.spec
|
|
54
|
+
|
|
55
|
+
# Installer logs
|
|
56
|
+
pip-log.txt
|
|
57
|
+
pip-delete-this-directory.txt
|
|
58
|
+
|
|
59
|
+
# Unit test / coverage reports
|
|
60
|
+
htmlcov/
|
|
61
|
+
.tox/
|
|
62
|
+
.nox/
|
|
63
|
+
.coverage
|
|
64
|
+
.coverage.*
|
|
65
|
+
.cache
|
|
66
|
+
nosetests.xml
|
|
67
|
+
coverage.xml
|
|
68
|
+
*.cover
|
|
69
|
+
*.py,cover
|
|
70
|
+
.hypothesis/
|
|
71
|
+
.pytest_cache/
|
|
72
|
+
|
|
73
|
+
# Translations
|
|
74
|
+
*.mo
|
|
75
|
+
*.pot
|
|
76
|
+
|
|
77
|
+
# Django stuff:
|
|
78
|
+
*.log
|
|
79
|
+
local_settings.py
|
|
80
|
+
db.sqlite3
|
|
81
|
+
db.sqlite3-journal
|
|
82
|
+
|
|
83
|
+
# Flask stuff:
|
|
84
|
+
instance/
|
|
85
|
+
.webassets-cache
|
|
86
|
+
|
|
87
|
+
# Scrapy stuff:
|
|
88
|
+
.scrapy
|
|
89
|
+
|
|
90
|
+
# Sphinx documentation
|
|
91
|
+
docs/_build/
|
|
92
|
+
|
|
93
|
+
# PyBuilder
|
|
94
|
+
target/
|
|
95
|
+
|
|
96
|
+
# Jupyter Notebook
|
|
97
|
+
.ipynb_checkpoints
|
|
98
|
+
|
|
99
|
+
# IPython
|
|
100
|
+
profile_default/
|
|
101
|
+
ipython_config.py
|
|
102
|
+
|
|
103
|
+
# pyenv
|
|
104
|
+
.python-version
|
|
105
|
+
|
|
106
|
+
# pipenv
|
|
107
|
+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
|
|
108
|
+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
|
|
109
|
+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
|
|
110
|
+
# install all needed dependencies.
|
|
111
|
+
#Pipfile.lock
|
|
112
|
+
|
|
113
|
+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow
|
|
114
|
+
__pypackages__/
|
|
115
|
+
|
|
116
|
+
# Celery stuff
|
|
117
|
+
celerybeat-schedule
|
|
118
|
+
celerybeat.pid
|
|
119
|
+
|
|
120
|
+
# SageMath parsed files
|
|
121
|
+
*.sage.py
|
|
122
|
+
|
|
123
|
+
# Environments
|
|
124
|
+
.env
|
|
125
|
+
.venv
|
|
126
|
+
env/
|
|
127
|
+
venv/
|
|
128
|
+
ENV/
|
|
129
|
+
env.bak/
|
|
130
|
+
venv.bak/
|
|
131
|
+
|
|
132
|
+
# Spyder project settings
|
|
133
|
+
.spyderproject
|
|
134
|
+
.spyproject
|
|
135
|
+
|
|
136
|
+
# Rope project settings
|
|
137
|
+
.ropeproject
|
|
138
|
+
|
|
139
|
+
# mkdocs documentation
|
|
140
|
+
|
|
141
|
+
# mypy
|
|
142
|
+
.mypy_cache/
|
|
143
|
+
.dmypy.json
|
|
144
|
+
dmypy.json
|
|
145
|
+
|
|
146
|
+
# Pyre type checker
|
|
147
|
+
.pyre/
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
## [0.2.1-alpha](https://github.com/omarirfa/Jetxl/compare/v0.2.0-alpha...v0.2.1-alpha) (2026-05-18)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* fixed build pipeline and updated calls ([c954080](https://github.com/omarirfa/Jetxl/commit/c9540800510fbedafd9c370c6e9752a37dba13af))
|
|
9
|
+
* fixed build pipeline and updated calls ([804f21b](https://github.com/omarirfa/Jetxl/commit/804f21bca04ad25112fe06533619648d567074ba))
|
|
10
|
+
|
|
11
|
+
## [0.2.0-alpha](https://github.com/omarirfa/Jetxl/compare/v0.1.0-alpha...v0.2.0-alpha) (2026-05-18)
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### Features
|
|
15
|
+
|
|
16
|
+
* add ability to trigger release pipeline manually ([223ae85](https://github.com/omarirfa/Jetxl/commit/223ae85428b26d78595bd2b49d15e70e18cf8163))
|
|
17
|
+
* add ability to trigger release pipeline manually ([ca98669](https://github.com/omarirfa/Jetxl/commit/ca98669aeb4ccf4f1903467582c9a190017dbff8))
|
|
18
|
+
* improvement on floating point and workflow builds ([8fe0cc1](https://github.com/omarirfa/Jetxl/commit/8fe0cc19039f4dd0ff84e087ff9460d6c5e147f5))
|
|
19
|
+
* improvement on floating point and workflow builds ([c00ac41](https://github.com/omarirfa/Jetxl/commit/c00ac41a2b5cc08992ee5713e1fde082bb68ac6f))
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
### Bug Fixes
|
|
23
|
+
|
|
24
|
+
* Fix image path in README for execution time comparison ([46d9c82](https://github.com/omarirfa/Jetxl/commit/46d9c82aaf38d40c9feb121bc66b77045855d67a))
|
|
25
|
+
* Fix image path in README for execution time comparison ([b3d63bf](https://github.com/omarirfa/Jetxl/commit/b3d63bf8613471c3fe95db3b18279442a7b05749))
|