ignore-python 0.1.0__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.
@@ -0,0 +1,169 @@
1
+ # This file is autogenerated by maturin v1.7.0
2
+ # To update, run
3
+ #
4
+ # maturin generate-ci github
5
+ #
6
+ name: CI
7
+
8
+ on:
9
+ push:
10
+ branches:
11
+ - main
12
+ - master
13
+ tags:
14
+ - '*'
15
+ pull_request:
16
+ workflow_dispatch:
17
+
18
+ permissions:
19
+ contents: read
20
+
21
+ jobs:
22
+ linux:
23
+ runs-on: ${{ matrix.platform.runner }}
24
+ strategy:
25
+ matrix:
26
+ platform:
27
+ - runner: ubuntu-latest
28
+ target: x86_64
29
+ - runner: ubuntu-latest
30
+ target: x86
31
+ - runner: ubuntu-latest
32
+ target: aarch64
33
+ - runner: ubuntu-latest
34
+ target: armv7
35
+ - runner: ubuntu-latest
36
+ target: s390x
37
+ - runner: ubuntu-latest
38
+ target: ppc64le
39
+ steps:
40
+ - uses: actions/checkout@v4
41
+ - uses: actions/setup-python@v5
42
+ with:
43
+ python-version: 3.x
44
+ - name: Build wheels
45
+ uses: PyO3/maturin-action@v1
46
+ with:
47
+ target: ${{ matrix.platform.target }}
48
+ args: --release --out dist --find-interpreter
49
+ sccache: 'true'
50
+ manylinux: auto
51
+ - name: Upload wheels
52
+ uses: actions/upload-artifact@v4
53
+ with:
54
+ name: wheels-linux-${{ matrix.platform.target }}
55
+ path: dist
56
+
57
+ musllinux:
58
+ runs-on: ${{ matrix.platform.runner }}
59
+ strategy:
60
+ matrix:
61
+ platform:
62
+ - runner: ubuntu-latest
63
+ target: x86_64
64
+ - runner: ubuntu-latest
65
+ target: x86
66
+ - runner: ubuntu-latest
67
+ target: aarch64
68
+ - runner: ubuntu-latest
69
+ target: armv7
70
+ steps:
71
+ - uses: actions/checkout@v4
72
+ - uses: actions/setup-python@v5
73
+ with:
74
+ python-version: 3.x
75
+ - name: Build wheels
76
+ uses: PyO3/maturin-action@v1
77
+ with:
78
+ target: ${{ matrix.platform.target }}
79
+ args: --release --out dist --find-interpreter
80
+ sccache: 'true'
81
+ manylinux: musllinux_1_2
82
+ - name: Upload wheels
83
+ uses: actions/upload-artifact@v4
84
+ with:
85
+ name: wheels-musllinux-${{ matrix.platform.target }}
86
+ path: dist
87
+
88
+ windows:
89
+ runs-on: ${{ matrix.platform.runner }}
90
+ strategy:
91
+ matrix:
92
+ platform:
93
+ - runner: windows-latest
94
+ target: x64
95
+ - runner: windows-latest
96
+ target: x86
97
+ steps:
98
+ - uses: actions/checkout@v4
99
+ - uses: actions/setup-python@v5
100
+ with:
101
+ python-version: 3.x
102
+ architecture: ${{ matrix.platform.target }}
103
+ - name: Build wheels
104
+ uses: PyO3/maturin-action@v1
105
+ with:
106
+ target: ${{ matrix.platform.target }}
107
+ args: --release --out dist --find-interpreter
108
+ sccache: 'true'
109
+ - name: Upload wheels
110
+ uses: actions/upload-artifact@v4
111
+ with:
112
+ name: wheels-windows-${{ matrix.platform.target }}
113
+ path: dist
114
+
115
+ macos:
116
+ runs-on: ${{ matrix.platform.runner }}
117
+ strategy:
118
+ matrix:
119
+ platform:
120
+ - runner: macos-12
121
+ target: x86_64
122
+ - runner: macos-14
123
+ target: aarch64
124
+ steps:
125
+ - uses: actions/checkout@v4
126
+ - uses: actions/setup-python@v5
127
+ with:
128
+ python-version: 3.x
129
+ - name: Build wheels
130
+ uses: PyO3/maturin-action@v1
131
+ with:
132
+ target: ${{ matrix.platform.target }}
133
+ args: --release --out dist --find-interpreter
134
+ sccache: 'true'
135
+ - name: Upload wheels
136
+ uses: actions/upload-artifact@v4
137
+ with:
138
+ name: wheels-macos-${{ matrix.platform.target }}
139
+ path: dist
140
+
141
+ sdist:
142
+ runs-on: ubuntu-latest
143
+ steps:
144
+ - uses: actions/checkout@v4
145
+ - name: Build sdist
146
+ uses: PyO3/maturin-action@v1
147
+ with:
148
+ command: sdist
149
+ args: --out dist
150
+ - name: Upload sdist
151
+ uses: actions/upload-artifact@v4
152
+ with:
153
+ name: wheels-sdist
154
+ path: dist
155
+
156
+ release:
157
+ name: Release
158
+ runs-on: ubuntu-latest
159
+ if: "startsWith(github.ref, 'refs/tags/')"
160
+ needs: [linux, musllinux, windows, macos, sdist]
161
+ steps:
162
+ - uses: actions/download-artifact@v4
163
+ - name: Publish to PyPI
164
+ uses: PyO3/maturin-action@v1
165
+ env:
166
+ MATURIN_PYPI_TOKEN: ${{ secrets.PYPI_API_TOKEN }}
167
+ with:
168
+ command: upload
169
+ args: --non-interactive --skip-existing wheels-*/*
@@ -0,0 +1,44 @@
1
+ name: website
2
+
3
+ # build the documentation whenever there are new commits on main
4
+ on:
5
+ push:
6
+ tags:
7
+ - '*'
8
+
9
+ # security: restrict permissions for CI jobs.
10
+ permissions:
11
+ contents: read
12
+
13
+ jobs:
14
+ # Build the documentation and upload the static HTML files as an artifact.
15
+ build:
16
+ runs-on: ubuntu-latest
17
+ steps:
18
+ - uses: actions/checkout@v4
19
+ - uses: actions/setup-python@v5
20
+ with:
21
+ python-version: '3.12'
22
+
23
+ - run: pip install maturin
24
+ - run: maturin dev
25
+ - run: pdoc --no-show-source 'ignore' '!ignore.ignore'
26
+
27
+ - uses: actions/upload-pages-artifact@v3
28
+ with:
29
+ path: docs/
30
+
31
+ # Deploy the artifact to GitHub pages.
32
+ # This is a separate job so that only actions/deploy-pages has the necessary permissions.
33
+ deploy:
34
+ needs: build
35
+ runs-on: ubuntu-latest
36
+ permissions:
37
+ pages: write
38
+ id-token: write
39
+ environment:
40
+ name: github-pages
41
+ url: ${{ steps.deployment.outputs.page_url }}
42
+ steps:
43
+ - id: deployment
44
+ uses: actions/deploy-pages@v4
@@ -0,0 +1,322 @@
1
+ /target
2
+
3
+ # Byte-compiled / optimized / DLL files
4
+ __pycache__/
5
+ .pytest_cache/
6
+ *.py[cod]
7
+
8
+ # C extensions
9
+ *.so
10
+
11
+ # Distribution / packaging
12
+ .Python
13
+ .venv/
14
+ env/
15
+ bin/
16
+ build/
17
+ develop-eggs/
18
+ dist/
19
+ eggs/
20
+ lib/
21
+ lib64/
22
+ parts/
23
+ sdist/
24
+ var/
25
+ include/
26
+ man/
27
+ venv/
28
+ *.egg-info/
29
+ .installed.cfg
30
+ *.egg
31
+
32
+ # Installer logs
33
+ pip-log.txt
34
+ pip-delete-this-directory.txt
35
+ pip-selfcheck.json
36
+
37
+ # Unit test / coverage reports
38
+ htmlcov/
39
+ .tox/
40
+ .coverage
41
+ .cache
42
+ nosetests.xml
43
+ coverage.xml
44
+
45
+ # Translations
46
+ *.mo
47
+
48
+ # Mr Developer
49
+ .mr.developer.cfg
50
+ .project
51
+ .pydevproject
52
+
53
+ # Rope
54
+ .ropeproject
55
+
56
+ # Django stuff:
57
+ *.log
58
+ *.pot
59
+
60
+ .DS_Store
61
+
62
+ # Sphinx documentation
63
+ docs/_build/
64
+
65
+ # PyCharm
66
+ .idea/
67
+
68
+ # VSCode
69
+ .vscode/
70
+
71
+ # Pyenv
72
+ .python-version
73
+ # Byte-compiled / optimized / DLL files
74
+ __pycache__/
75
+ *.py[cod]
76
+ *$py.class
77
+
78
+ # C extensions
79
+ *.so
80
+
81
+ # Distribution / packaging
82
+ .Python
83
+ build/
84
+ develop-eggs/
85
+ dist/
86
+ downloads/
87
+ eggs/
88
+ .eggs/
89
+ lib/
90
+ lib64/
91
+ parts/
92
+ sdist/
93
+ var/
94
+ wheels/
95
+ share/python-wheels/
96
+ *.egg-info/
97
+ .installed.cfg
98
+ *.egg
99
+ MANIFEST
100
+
101
+ # PyInstaller
102
+ # Usually these files are written by a python script from a template
103
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
104
+ *.manifest
105
+ *.spec
106
+
107
+ # Installer logs
108
+ pip-log.txt
109
+ pip-delete-this-directory.txt
110
+
111
+ # Unit test / coverage reports
112
+ htmlcov/
113
+ .tox/
114
+ .nox/
115
+ .coverage
116
+ .coverage.*
117
+ .cache
118
+ nosetests.xml
119
+ coverage.xml
120
+ *.cover
121
+ *.py,cover
122
+ .hypothesis/
123
+ .pytest_cache/
124
+ cover/
125
+
126
+ # Translations
127
+ *.mo
128
+ *.pot
129
+
130
+ # Django stuff:
131
+ *.log
132
+ local_settings.py
133
+ db.sqlite3
134
+ db.sqlite3-journal
135
+
136
+ # Flask stuff:
137
+ instance/
138
+ .webassets-cache
139
+
140
+ # Scrapy stuff:
141
+ .scrapy
142
+
143
+ # Sphinx documentation
144
+ docs/_build/
145
+
146
+ # PyBuilder
147
+ .pybuilder/
148
+ target/
149
+
150
+ # Jupyter Notebook
151
+ .ipynb_checkpoints
152
+
153
+ # IPython
154
+ profile_default/
155
+ ipython_config.py
156
+
157
+ # pyenv
158
+ # For a library or package, you might want to ignore these files since the code is
159
+ # intended to run in multiple environments; otherwise, check them in:
160
+ # .python-version
161
+
162
+ # pipenv
163
+ # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
164
+ # However, in case of collaboration, if having platform-specific dependencies or dependencies
165
+ # having no cross-platform support, pipenv may install dependencies that don't work, or not
166
+ # install all needed dependencies.
167
+ #Pipfile.lock
168
+
169
+ # poetry
170
+ # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
171
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
172
+ # commonly ignored for libraries.
173
+ # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
174
+ #poetry.lock
175
+
176
+ # pdm
177
+ # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
178
+ #pdm.lock
179
+ # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
180
+ # in version control.
181
+ # https://pdm.fming.dev/latest/usage/project/#working-with-version-control
182
+ .pdm.toml
183
+ .pdm-python
184
+ .pdm-build/
185
+
186
+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
187
+ __pypackages__/
188
+
189
+ # Celery stuff
190
+ celerybeat-schedule
191
+ celerybeat.pid
192
+
193
+ # SageMath parsed files
194
+ *.sage.py
195
+
196
+ # Environments
197
+ .env
198
+ .venv
199
+ env/
200
+ venv/
201
+ ENV/
202
+ env.bak/
203
+ venv.bak/
204
+
205
+ # Spyder project settings
206
+ .spyderproject
207
+ .spyproject
208
+
209
+ # Rope project settings
210
+ .ropeproject
211
+
212
+ # mkdocs documentation
213
+ /site
214
+
215
+ # mypy
216
+ .mypy_cache/
217
+ .dmypy.json
218
+ dmypy.json
219
+
220
+ # Pyre type checker
221
+ .pyre/
222
+
223
+ # pytype static type analyzer
224
+ .pytype/
225
+
226
+ # Cython debug symbols
227
+ cython_debug/
228
+
229
+ # PyCharm
230
+ # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
231
+ # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
232
+ # and can be added to the global gitignore or merged into this file. For a more nuclear
233
+ # option (not recommended) you can uncomment the following to ignore the entire idea folder.
234
+ #.idea/
235
+ # Generated by Cargo
236
+ # will have compiled files and executables
237
+ debug/
238
+ target/
239
+
240
+ # Remove Cargo.lock from gitignore if creating an executable, leave it for libraries
241
+ # More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html
242
+ Cargo.lock
243
+
244
+ # These are backup files generated by rustfmt
245
+ **/*.rs.bk
246
+
247
+ # MSVC Windows builds of rustc generate these, which store debugging information
248
+ *.pdb
249
+
250
+ # RustRover
251
+ # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
252
+ # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
253
+ # and can be added to the global gitignore or merged into this file. For a more nuclear
254
+ # option (not recommended) you can uncomment the following to ignore the entire idea folder.
255
+ #.idea/# -*- mode: gitignore; -*-
256
+ *~
257
+ \#*\#
258
+ /.emacs.desktop
259
+ /.emacs.desktop.lock
260
+ *.elc
261
+ auto-save-list
262
+ tramp
263
+ .\#*
264
+
265
+ # Org-mode
266
+ .org-id-locations
267
+ *_archive
268
+
269
+ # flymake-mode
270
+ *_flymake.*
271
+
272
+ # eshell files
273
+ /eshell/history
274
+ /eshell/lastdir
275
+
276
+ # elpa packages
277
+ /elpa/
278
+
279
+ # reftex files
280
+ *.rel
281
+
282
+ # AUCTeX auto folder
283
+ /auto/
284
+
285
+ # cask packages
286
+ .cask/
287
+ dist/
288
+
289
+ # Flycheck
290
+ flycheck_*.el
291
+
292
+ # server auth directory
293
+ /server/
294
+
295
+ # projectiles files
296
+ .projectile
297
+
298
+ # directory configuration
299
+ .dir-locals.el
300
+
301
+ # network security
302
+ /network-security.data
303
+
304
+ # Swap
305
+ [._]*.s[a-v][a-z]
306
+ !*.svg # comment out if you don't need vector files
307
+ [._]*.sw[a-p]
308
+ [._]s[a-rt-v][a-z]
309
+ [._]ss[a-gi-z]
310
+ [._]sw[a-p]
311
+
312
+ # Session
313
+ Session.vim
314
+ Sessionx.vim
315
+
316
+ # Temporary
317
+ .netrwhist
318
+ *~
319
+ # Auto-generated tag files
320
+ tags
321
+ # Persistent undo
322
+ [._]*.un~