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.
@@ -120,7 +120,7 @@ jobs:
120
120
  run: pip install pdoc
121
121
 
122
122
  - name: Generate docs
123
- run: pdoc .\src\sfq\__init__.py -o docs --no-search
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
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: sfq
3
- Version: 0.0.23
3
+ Version: 0.0.25
4
4
  Summary: Python wrapper for the Salesforce's Query API.
5
5
  Author-email: David Moruzzi <sfq.pypi@dmoruzi.com>
6
6
  Keywords: salesforce,salesforce query
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "sfq"
3
- version = "0.0.23"
3
+ version = "0.0.25"
4
4
  description = "Python wrapper for the Salesforce's Query API."
5
5
  readme = "README.md"
6
6
  authors = [{ name = "David Moruzzi", email = "sfq.pypi@dmoruzi.com" }]
@@ -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.23",
93
+ user_agent: str = "sfq/0.0.25",
94
94
  sforce_client: str = "_auto",
95
95
  proxy: str = "_auto",
96
96
  ) -> None:
@@ -3,5 +3,5 @@ requires-python = ">=3.9"
3
3
 
4
4
  [[package]]
5
5
  name = "sfq"
6
- version = "0.0.23"
6
+ version = "0.0.25"
7
7
  source = { editable = "." }
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes