git-stream 2.0.0__tar.gz → 2.0.2__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.
Files changed (32) hide show
  1. git_stream-2.0.2/.github/workflows/build-and-release.yml +31 -0
  2. git_stream-2.0.0/.p4ignore → git_stream-2.0.2/.gitignore +277 -244
  3. git_stream-2.0.0/.gitignore → git_stream-2.0.2/.p4ignore +278 -276
  4. {git_stream-2.0.0 → git_stream-2.0.2}/.readthedocs.yml +4 -4
  5. {git_stream-2.0.0 → git_stream-2.0.2}/CHANGELOG.md +35 -24
  6. git_stream-2.0.2/DOCUMENTATION.md +3 -0
  7. {git_stream-2.0.0 → git_stream-2.0.2}/LICENSE +20 -20
  8. {git_stream-2.0.0 → git_stream-2.0.2}/MANIFEST.in +4 -4
  9. {git_stream-2.0.0 → git_stream-2.0.2}/PKG-INFO +10 -8
  10. {git_stream-2.0.0 → git_stream-2.0.2}/README.md +43 -43
  11. {git_stream-2.0.0 → git_stream-2.0.2}/docs/Makefile +20 -20
  12. {git_stream-2.0.0 → git_stream-2.0.2}/docs/coding_standards.py +288 -288
  13. {git_stream-2.0.0 → git_stream-2.0.2}/docs/conf.py +55 -55
  14. {git_stream-2.0.0 → git_stream-2.0.2}/docs/make.bat +35 -35
  15. {git_stream-2.0.0 → git_stream-2.0.2}/docs/modules.rst +7 -7
  16. {git_stream-2.0.0 → git_stream-2.0.2}/docs/requirements.txt +8 -8
  17. {git_stream-2.0.0 → git_stream-2.0.2}/git_stream/__init__.py +4 -4
  18. {git_stream-2.0.0 → git_stream-2.0.2}/git_stream/__main__.py +304 -303
  19. {git_stream-2.0.0 → git_stream-2.0.2}/pyproject.toml +21 -25
  20. {git_stream-2.0.0 → git_stream-2.0.2}/setup.py +3 -3
  21. git_stream-2.0.2/tests/__init__.py +1 -0
  22. git_stream-2.0.2/tests/test_main.py +123 -0
  23. git_stream-2.0.2/util/Update-Env.ps1 +3 -0
  24. git_stream-2.0.2/util/update-env-core.ps1 +3 -0
  25. git_stream-2.0.2/util/update-env.sh +4 -0
  26. git_stream-2.0.2/vjer-rc.yml +11 -0
  27. {git_stream-2.0.0 → git_stream-2.0.2}/vjer.yml +42 -34
  28. git_stream-2.0.0/.github/workflows/build-and-release.yml +0 -141
  29. git_stream-2.0.0/DOCUMENTATION.md +0 -3
  30. git_stream-2.0.0/util/Update-Env.ps1 +0 -8
  31. git_stream-2.0.0/util/update-env.sh +0 -8
  32. {git_stream-2.0.0 → git_stream-2.0.2}/git_stream/py.typed +0 -0
@@ -0,0 +1,31 @@
1
+ name: Git Stream Build and Release
2
+
3
+ on:
4
+ workflow_dispatch:
5
+ inputs:
6
+ skip-pypi-test:
7
+ description: Skip PyPI test
8
+ type: boolean
9
+ push:
10
+ branches:
11
+ - main
12
+ - feature/*
13
+ - release/*
14
+ pull_request:
15
+ branches:
16
+ - main
17
+ - feature/*
18
+ - release/*
19
+
20
+ permissions:
21
+ checks: write
22
+ contents: write
23
+ id-token: write
24
+
25
+ jobs:
26
+ ci-cd:
27
+ uses: arisilon/shared-actions/.github/workflows/python-cicd.yaml@released
28
+ with:
29
+ skip-pypi-test: ${{ inputs.skip-pypi-test || false }}
30
+ test-action: "python -c 'import git_stream; print(git_stream.__version__)'"
31
+ secrets: inherit
@@ -1,244 +1,277 @@
1
- # File created using '.gitignore Generator' for Visual Studio Code: https://bit.ly/vscode-gig
2
- # Created by https://www.toptal.com/developers/gitignore/api/windows,visualstudiocode,python,git
3
- # Edit at https://www.toptal.com/developers/gitignore?templates=windows,visualstudiocode,python,git
4
-
5
- ### Git ###
6
- # Created by git for backups. To disable backups in Git:
7
- # $ git config --global mergetool.keepBackup false
8
- *.orig
9
-
10
- # Created by git when using merge tools for conflicts
11
- *.BACKUP.*
12
- *.BASE.*
13
- *.LOCAL.*
14
- *.REMOTE.*
15
- *_BACKUP_*.txt
16
- *_BASE_*.txt
17
- *_LOCAL_*.txt
18
- *_REMOTE_*.txt
19
-
20
- ### Python ###
21
- # Byte-compiled / optimized / DLL files
22
- __pycache__/
23
- *.py[cod]
24
- *$py.class
25
-
26
- # C extensions
27
- *.so
28
-
29
- # Distribution / packaging
30
- .Python
31
- build/
32
- develop-eggs/
33
- dist/
34
- downloads/
35
- eggs/
36
- .eggs/
37
- lib/
38
- lib64/
39
- parts/
40
- sdist/
41
- var/
42
- wheels/
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
- cover/
73
-
74
- # Translations
75
- *.mo
76
- *.pot
77
-
78
- # Django stuff:
79
- *.log
80
- local_settings.py
81
- db.sqlite3
82
- db.sqlite3-journal
83
-
84
- # Flask stuff:
85
- instance/
86
- .webassets-cache
87
-
88
- # Scrapy stuff:
89
- .scrapy
90
-
91
- # Sphinx documentation
92
- docs/_build/
93
-
94
- # PyBuilder
95
- .pybuilder/
96
- target/
97
-
98
- # Jupyter Notebook
99
- .ipynb_checkpoints
100
-
101
- # IPython
102
- profile_default/
103
- ipython_config.py
104
-
105
- # pyenv
106
- # For a library or package, you might want to ignore these files since the code is
107
- # intended to run in multiple environments; otherwise, check them in:
108
- # .python-version
109
-
110
- # pipenv
111
- # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
112
- # However, in case of collaboration, if having platform-specific dependencies or dependencies
113
- # having no cross-platform support, pipenv may install dependencies that don't work, or not
114
- # install all needed dependencies.
115
- #Pipfile.lock
116
-
117
- # poetry
118
- # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
119
- # This is especially recommended for binary packages to ensure reproducibility, and is more
120
- # commonly ignored for libraries.
121
- # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
122
- #poetry.lock
123
-
124
- # pdm
125
- # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
126
- #pdm.lock
127
- # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
128
- # in version control.
129
- # https://pdm.fming.dev/#use-with-ide
130
- .pdm.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
- # SageMath parsed files
140
- *.sage.py
141
-
142
- # Environments
143
- .env
144
- .venv
145
- env/
146
- venv/
147
- ENV/
148
- env.bak/
149
- venv.bak/
150
-
151
- # Spyder project settings
152
- .spyderproject
153
- .spyproject
154
-
155
- # Rope project settings
156
- .ropeproject
157
-
158
- # mkdocs documentation
159
- /site
160
-
161
- # mypy
162
- .mypy_cache/
163
- .dmypy.json
164
- dmypy.json
165
-
166
- # Pyre type checker
167
- .pyre/
168
-
169
- # pytype static type analyzer
170
- .pytype/
171
-
172
- # Cython debug symbols
173
- cython_debug/
174
-
175
- # PyCharm
176
- # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
177
- # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
178
- # and can be added to the global gitignore or merged into this file. For a more nuclear
179
- # option (not recommended) you can uncomment the following to ignore the entire idea folder.
180
- #.idea/
181
-
182
- ### Python Patch ###
183
- # Poetry local configuration file - https://python-poetry.org/docs/configuration/#local-configuration
184
- poetry.toml
185
-
186
- # ruff
187
- .ruff_cache/
188
-
189
- # LSP config files
190
- pyrightconfig.json
191
-
192
- ### VisualStudioCode ###
193
- .vscode/*
194
- !.vscode/settings.json
195
- !.vscode/tasks.json
196
- !.vscode/launch.json
197
- !.vscode/extensions.json
198
- !.vscode/*.code-snippets
199
-
200
- # Local History for Visual Studio Code
201
- .history/
202
-
203
- # Built Visual Studio Code Extensions
204
- *.vsix
205
-
206
- ### VisualStudioCode Patch ###
207
- # Ignore all local history of files
208
- .history
209
- .ionide
210
-
211
- ### Windows ###
212
- # Windows thumbnail cache files
213
- Thumbs.db
214
- Thumbs.db:encryptable
215
- ehthumbs.db
216
- ehthumbs_vista.db
217
-
218
- # Dump file
219
- *.stackdump
220
-
221
- # Folder config file
222
- [Dd]esktop.ini
223
-
224
- # Recycle Bin used on file shares
225
- $RECYCLE.BIN/
226
-
227
- # Windows Installer files
228
- *.cab
229
- *.msi
230
- *.msix
231
- *.msm
232
- *.msp
233
-
234
- # Windows shortcuts
235
- *.lnk
236
-
237
- # End of https://www.toptal.com/developers/gitignore/api/windows,visualstudiocode,python,git
238
-
239
- # Custom rules (everything added below won't be overriden by 'Generate .gitignore File' if you use 'Update' option)
240
-
241
- .git/
242
- .p4cfg
243
- artifacts/
244
- unit_test_results/
1
+ # File created using '.gitignore Generator' for Visual Studio Code: https://bit.ly/vscode-gig
2
+ # Created by https://www.toptal.com/developers/gitignore/api/windows,visualstudiocode,python,macos,git
3
+ # Edit at https://www.toptal.com/developers/gitignore?templates=windows,visualstudiocode,python,macos,git
4
+
5
+ ### Git ###
6
+ # Created by git for backups. To disable backups in Git:
7
+ # $ git config --global mergetool.keepBackup false
8
+ *.orig
9
+
10
+ # Created by git when using merge tools for conflicts
11
+ *.BACKUP.*
12
+ *.BASE.*
13
+ *.LOCAL.*
14
+ *.REMOTE.*
15
+ *_BACKUP_*.txt
16
+ *_BASE_*.txt
17
+ *_LOCAL_*.txt
18
+ *_REMOTE_*.txt
19
+
20
+ ### macOS ###
21
+ # General
22
+ .DS_Store
23
+ .AppleDouble
24
+ .LSOverride
25
+
26
+ # Icon must end with two \r
27
+ Icon
28
+
29
+
30
+ # Thumbnails
31
+ ._*
32
+
33
+ # Files that might appear in the root of a volume
34
+ .DocumentRevisions-V100
35
+ .fseventsd
36
+ .Spotlight-V100
37
+ .TemporaryItems
38
+ .Trashes
39
+ .VolumeIcon.icns
40
+ .com.apple.timemachine.donotpresent
41
+
42
+ # Directories potentially created on remote AFP share
43
+ .AppleDB
44
+ .AppleDesktop
45
+ Network Trash Folder
46
+ Temporary Items
47
+ .apdisk
48
+
49
+ ### macOS Patch ###
50
+ # iCloud generated files
51
+ *.icloud
52
+
53
+ ### Python ###
54
+ # Byte-compiled / optimized / DLL files
55
+ __pycache__/
56
+ *.py[cod]
57
+ *$py.class
58
+
59
+ # C extensions
60
+ *.so
61
+
62
+ # Distribution / packaging
63
+ .Python
64
+ build/
65
+ develop-eggs/
66
+ dist/
67
+ downloads/
68
+ eggs/
69
+ .eggs/
70
+ lib/
71
+ lib64/
72
+ parts/
73
+ sdist/
74
+ var/
75
+ wheels/
76
+ share/python-wheels/
77
+ *.egg-info/
78
+ .installed.cfg
79
+ *.egg
80
+ MANIFEST
81
+
82
+ # PyInstaller
83
+ # Usually these files are written by a python script from a template
84
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
85
+ *.manifest
86
+ *.spec
87
+
88
+ # Installer logs
89
+ pip-log.txt
90
+ pip-delete-this-directory.txt
91
+
92
+ # Unit test / coverage reports
93
+ htmlcov/
94
+ .tox/
95
+ .nox/
96
+ .coverage
97
+ .coverage.*
98
+ .cache
99
+ nosetests.xml
100
+ coverage.xml
101
+ *.cover
102
+ *.py,cover
103
+ .hypothesis/
104
+ .pytest_cache/
105
+ cover/
106
+
107
+ # Translations
108
+ *.mo
109
+ *.pot
110
+
111
+ # Django stuff:
112
+ *.log
113
+ local_settings.py
114
+ db.sqlite3
115
+ db.sqlite3-journal
116
+
117
+ # Flask stuff:
118
+ instance/
119
+ .webassets-cache
120
+
121
+ # Scrapy stuff:
122
+ .scrapy
123
+
124
+ # Sphinx documentation
125
+ docs/_build/
126
+
127
+ # PyBuilder
128
+ .pybuilder/
129
+ target/
130
+
131
+ # Jupyter Notebook
132
+ .ipynb_checkpoints
133
+
134
+ # IPython
135
+ profile_default/
136
+ ipython_config.py
137
+
138
+ # pyenv
139
+ # For a library or package, you might want to ignore these files since the code is
140
+ # intended to run in multiple environments; otherwise, check them in:
141
+ # .python-version
142
+
143
+ # pipenv
144
+ # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
145
+ # However, in case of collaboration, if having platform-specific dependencies or dependencies
146
+ # having no cross-platform support, pipenv may install dependencies that don't work, or not
147
+ # install all needed dependencies.
148
+ #Pipfile.lock
149
+
150
+ # poetry
151
+ # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
152
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
153
+ # commonly ignored for libraries.
154
+ # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
155
+ #poetry.lock
156
+
157
+ # pdm
158
+ # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
159
+ #pdm.lock
160
+ # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
161
+ # in version control.
162
+ # https://pdm.fming.dev/#use-with-ide
163
+ .pdm.toml
164
+
165
+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
166
+ __pypackages__/
167
+
168
+ # Celery stuff
169
+ celerybeat-schedule
170
+ celerybeat.pid
171
+
172
+ # SageMath parsed files
173
+ *.sage.py
174
+
175
+ # Environments
176
+ .env
177
+ .venv
178
+ env/
179
+ venv/
180
+ ENV/
181
+ env.bak/
182
+ venv.bak/
183
+
184
+ # Spyder project settings
185
+ .spyderproject
186
+ .spyproject
187
+
188
+ # Rope project settings
189
+ .ropeproject
190
+
191
+ # mkdocs documentation
192
+ /site
193
+
194
+ # mypy
195
+ .mypy_cache/
196
+ .dmypy.json
197
+ dmypy.json
198
+
199
+ # Pyre type checker
200
+ .pyre/
201
+
202
+ # pytype static type analyzer
203
+ .pytype/
204
+
205
+ # Cython debug symbols
206
+ cython_debug/
207
+
208
+ # PyCharm
209
+ # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
210
+ # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
211
+ # and can be added to the global gitignore or merged into this file. For a more nuclear
212
+ # option (not recommended) you can uncomment the following to ignore the entire idea folder.
213
+ #.idea/
214
+
215
+ ### Python Patch ###
216
+ # Poetry local configuration file - https://python-poetry.org/docs/configuration/#local-configuration
217
+ poetry.toml
218
+
219
+ # ruff
220
+ .ruff_cache/
221
+
222
+ # LSP config files
223
+ pyrightconfig.json
224
+
225
+ ### VisualStudioCode ###
226
+ .vscode/*
227
+ !.vscode/settings.json
228
+ !.vscode/tasks.json
229
+ !.vscode/launch.json
230
+ !.vscode/extensions.json
231
+ !.vscode/*.code-snippets
232
+
233
+ # Local History for Visual Studio Code
234
+ .history/
235
+
236
+ # Built Visual Studio Code Extensions
237
+ *.vsix
238
+
239
+ ### VisualStudioCode Patch ###
240
+ # Ignore all local history of files
241
+ .history
242
+ .ionide
243
+
244
+ ### Windows ###
245
+ # Windows thumbnail cache files
246
+ Thumbs.db
247
+ Thumbs.db:encryptable
248
+ ehthumbs.db
249
+ ehthumbs_vista.db
250
+
251
+ # Dump file
252
+ *.stackdump
253
+
254
+ # Folder config file
255
+ [Dd]esktop.ini
256
+
257
+ # Recycle Bin used on file shares
258
+ $RECYCLE.BIN/
259
+
260
+ # Windows Installer files
261
+ *.cab
262
+ *.msi
263
+ *.msix
264
+ *.msm
265
+ *.msp
266
+
267
+ # Windows shortcuts
268
+ *.lnk
269
+
270
+ # End of https://www.toptal.com/developers/gitignore/api/windows,visualstudiocode,python,macos,git
271
+
272
+ # Custom rules (everything added below won't be overriden by 'Generate .gitignore File' if you use 'Update' option)
273
+
274
+ .p4cfg
275
+ artifacts/
276
+ test_results*/
277
+ git-stream-*