Skip to content

Commit 64e0a03

Browse files
authored
Merge branch 'main' into tswast-gh-actions
2 parents f88f621 + d30ee88 commit 64e0a03

52 files changed

Lines changed: 4661 additions & 113 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: 226 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,226 @@
1+
# Byte-compiled / optimized / DLL files
2+
__pycache__/
3+
*.py[codz]
4+
*$py.class
5+
6+
# C extensions
7+
*.so
8+
9+
# Distribution / packaging
10+
.Python
11+
build/
12+
develop-eggs/
13+
dist/
14+
downloads/
15+
eggs/
16+
.eggs/
17+
lib/
18+
lib64/
19+
parts/
20+
sdist/
21+
var/
22+
wheels/
23+
share/python-wheels/
24+
*.egg-info/
25+
.installed.cfg
26+
*.egg
27+
MANIFEST
28+
29+
# PyInstaller
30+
# Usually these files are written by a python script from a template
31+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
32+
*.manifest
33+
*.spec
34+
35+
# Installer logs
36+
pip-log.txt
37+
pip-delete-this-directory.txt
38+
39+
# Unit test / coverage reports
40+
htmlcov/
41+
.tox/
42+
.nox/
43+
.coverage
44+
.coverage.*
45+
.cache
46+
nosetests.xml
47+
coverage.xml
48+
*.cover
49+
*.py.cover
50+
*.lcov
51+
.hypothesis/
52+
.pytest_cache/
53+
cover/
54+
55+
# VS Code
56+
.vscode
57+
58+
# Translations
59+
*.mo
60+
*.pot
61+
62+
# Django stuff:
63+
*.log
64+
local_settings.py
65+
db.sqlite3
66+
db.sqlite3-journal
67+
68+
# Flask stuff:
69+
instance/
70+
.webassets-cache
71+
72+
# Scrapy stuff:
73+
.scrapy
74+
75+
# Sphinx documentation
76+
docs/_build/
77+
78+
# PyBuilder
79+
.pybuilder/
80+
target/
81+
82+
# Jupyter Notebook
83+
.ipynb_checkpoints
84+
85+
# IPython
86+
profile_default/
87+
ipython_config.py
88+
89+
# pyenv
90+
# For a library or package, you might want to ignore these files since the code is
91+
# intended to run in multiple environments; otherwise, check them in:
92+
# .python-version
93+
94+
# pipenv
95+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
96+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
97+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
98+
# install all needed dependencies.
99+
# Pipfile.lock
100+
101+
# UV
102+
# Similar to Pipfile.lock, it is generally recommended to include uv.lock in version control.
103+
# This is especially recommended for binary packages to ensure reproducibility, and is more
104+
# commonly ignored for libraries.
105+
# uv.lock
106+
107+
# poetry
108+
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
109+
# This is especially recommended for binary packages to ensure reproducibility, and is more
110+
# commonly ignored for libraries.
111+
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
112+
# poetry.lock
113+
# poetry.toml
114+
115+
# pdm
116+
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
117+
# pdm recommends including project-wide configuration in pdm.toml, but excluding .pdm-python.
118+
# https://pdm-project.org/en/latest/usage/project/#working-with-version-control
119+
# pdm.lock
120+
# pdm.toml
121+
.pdm-python
122+
.pdm-build/
123+
124+
# pixi
125+
# Similar to Pipfile.lock, it is generally recommended to include pixi.lock in version control.
126+
# pixi.lock
127+
# Pixi creates a virtual environment in the .pixi directory, just like venv module creates one
128+
# in the .venv directory. It is recommended not to include this directory in version control.
129+
.pixi/*
130+
!.pixi/config.toml
131+
132+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
133+
__pypackages__/
134+
135+
# Celery stuff
136+
celerybeat-schedule*
137+
celerybeat.pid
138+
139+
# Redis
140+
*.rdb
141+
*.aof
142+
*.pid
143+
144+
# RabbitMQ
145+
mnesia/
146+
rabbitmq/
147+
rabbitmq-data/
148+
149+
# ActiveMQ
150+
activemq-data/
151+
152+
# SageMath parsed files
153+
*.sage.py
154+
155+
# Environments
156+
.env
157+
.envrc
158+
.venv
159+
env/
160+
venv/
161+
ENV/
162+
env.bak/
163+
venv.bak/
164+
165+
# Spyder project settings
166+
.spyderproject
167+
.spyproject
168+
169+
# Rope project settings
170+
.ropeproject
171+
172+
# mkdocs documentation
173+
/site
174+
175+
# mypy
176+
.mypy_cache/
177+
.dmypy.json
178+
dmypy.json
179+
180+
# Pyre type checker
181+
.pyre/
182+
183+
# pytype static type analyzer
184+
.pytype/
185+
186+
# Cython debug symbols
187+
cython_debug/
188+
189+
# PyCharm
190+
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
191+
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
192+
# and can be added to the global gitignore or merged into this file. For a more nuclear
193+
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
194+
# .idea/
195+
196+
# Abstra
197+
# Abstra is an AI-powered process automation framework.
198+
# Ignore directories containing user credentials, local state, and settings.
199+
# Learn more at https://abstra.io/docs
200+
.abstra/
201+
202+
# Visual Studio Code
203+
# Visual Studio Code specific template is maintained in a separate VisualStudioCode.gitignore
204+
# that can be found at https://github.com/github/gitignore/blob/main/Global/VisualStudioCode.gitignore
205+
# and can be added to the global gitignore or merged into this file. However, if you prefer,
206+
# you could uncomment the following to ignore the entire vscode folder
207+
# .vscode/
208+
# Temporary file for partial code execution
209+
tempCodeRunnerFile.py
210+
211+
# Ruff stuff:
212+
.ruff_cache/
213+
214+
# PyPI configuration file
215+
.pypirc
216+
217+
# Marimo
218+
marimo/_static/
219+
marimo/_lsp/
220+
__marimo__/
221+
222+
# Streamlit
223+
.streamlit/secrets.toml
224+
225+
# Tests
226+
*sponge_log.xml

.kokoro/requirements/build.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
--only-binary :all:
22
twine>=6.2.0
33
build>=1.3.0
4-
wheel>=0.45.1
4+
wheel>=0.46.2
55
keyring>=25.7.0
66
keyrings.google-artifactregistry-auth>=1.1.2

0 commit comments

Comments
 (0)