sfq 0.0.23__tar.gz → 0.0.25__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.
- {sfq-0.0.23 → sfq-0.0.25}/.github/workflows/publish.yml +5 -1
- {sfq-0.0.23 → sfq-0.0.25}/PKG-INFO +1 -1
- {sfq-0.0.23 → sfq-0.0.25}/pyproject.toml +1 -1
- {sfq-0.0.23 → sfq-0.0.25}/src/sfq/__init__.py +1 -1
- {sfq-0.0.23 → sfq-0.0.25}/uv.lock +1 -1
- {sfq-0.0.23 → sfq-0.0.25}/.gitignore +0 -0
- {sfq-0.0.23 → sfq-0.0.25}/.python-version +0 -0
- {sfq-0.0.23 → sfq-0.0.25}/README.md +0 -0
- {sfq-0.0.23 → sfq-0.0.25}/src/sfq/_cometd.py +0 -0
- {sfq-0.0.23 → sfq-0.0.25}/src/sfq/py.typed +0 -0
- {sfq-0.0.23 → sfq-0.0.25}/tests/conftest.py +0 -0
- {sfq-0.0.23 → sfq-0.0.25}/tests/test_limits_api.py +0 -0
- {sfq-0.0.23 → sfq-0.0.25}/tests/test_log_trace_redact.py +0 -0
@@ -120,7 +120,7 @@ jobs:
|
|
120
120
|
run: pip install pdoc
|
121
121
|
|
122
122
|
- name: Generate docs
|
123
|
-
run: pdoc
|
123
|
+
run: pdoc src/sfq/__init__.py -o docs --no-search
|
124
124
|
|
125
125
|
- name: Set sfq.html as default index page
|
126
126
|
run: |
|
@@ -143,6 +143,8 @@ jobs:
|
|
143
143
|
echo "Branch 'docs' does not exist. Creating new orphan branch..."
|
144
144
|
mkdir docs-branch
|
145
145
|
cd docs-branch
|
146
|
+
git config user.name "github-actions[bot]"
|
147
|
+
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
|
146
148
|
git init
|
147
149
|
git checkout --orphan docs
|
148
150
|
git commit --allow-empty -m "CI: Initial empty commit"
|
@@ -157,6 +159,8 @@ jobs:
|
|
157
159
|
rm -rf docs-branch/*
|
158
160
|
cp -r docs/* docs-branch/
|
159
161
|
cd docs-branch
|
162
|
+
git config user.name "github-actions[bot]"
|
163
|
+
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
|
160
164
|
git add .
|
161
165
|
git commit -m "CI: Update documentation" || echo "No changes to commit"
|
162
166
|
git push origin docs --force
|
@@ -90,7 +90,7 @@ class SFAuth:
|
|
90
90
|
access_token: Optional[str] = None,
|
91
91
|
token_expiration_time: Optional[float] = None,
|
92
92
|
token_lifetime: int = 15 * 60,
|
93
|
-
user_agent: str = "sfq/0.0.
|
93
|
+
user_agent: str = "sfq/0.0.25",
|
94
94
|
sforce_client: str = "_auto",
|
95
95
|
proxy: str = "_auto",
|
96
96
|
) -> None:
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|