py-fastplus 0.2.1__tar.gz → 0.2.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.
- {py_fastplus-0.2.1 → py_fastplus-0.2.2}/.github/workflows/Publish.yml +7 -2
- {py_fastplus-0.2.1 → py_fastplus-0.2.2}/Cargo.lock +1 -1
- {py_fastplus-0.2.1 → py_fastplus-0.2.2}/Cargo.toml +1 -1
- {py_fastplus-0.2.1 → py_fastplus-0.2.2}/PKG-INFO +1 -1
- {py_fastplus-0.2.1 → py_fastplus-0.2.2}/src/operator.rs +1 -1
- {py_fastplus-0.2.1 → py_fastplus-0.2.2}/.githooks/pre-commit +0 -0
- {py_fastplus-0.2.1 → py_fastplus-0.2.2}/.github/workflows/Commit.yml +0 -0
- {py_fastplus-0.2.1 → py_fastplus-0.2.2}/.gitignore +0 -0
- {py_fastplus-0.2.1 → py_fastplus-0.2.2}/LICENSE +0 -0
- {py_fastplus-0.2.1 → py_fastplus-0.2.2}/README.md +0 -0
- {py_fastplus-0.2.1 → py_fastplus-0.2.2}/examples/parse_demo.rs +0 -0
- {py_fastplus-0.2.1 → py_fastplus-0.2.2}/pyproject.toml +0 -0
- {py_fastplus-0.2.1 → py_fastplus-0.2.2}/python/fastplus/__about__.py +0 -0
- {py_fastplus-0.2.1 → py_fastplus-0.2.2}/python/fastplus/__init__.py +0 -0
- {py_fastplus-0.2.1 → py_fastplus-0.2.2}/python/fastplus/core.pyi +0 -0
- {py_fastplus-0.2.1 → py_fastplus-0.2.2}/python/fastplus/parser.py +0 -0
- {py_fastplus-0.2.1 → py_fastplus-0.2.2}/python/tests/test_all.py +0 -0
- {py_fastplus-0.2.1 → py_fastplus-0.2.2}/src/ast.rs +0 -0
- {py_fastplus-0.2.1 → py_fastplus-0.2.2}/src/fastplus.pest +0 -0
- {py_fastplus-0.2.1 → py_fastplus-0.2.2}/src/field.rs +0 -0
- {py_fastplus-0.2.1 → py_fastplus-0.2.2}/src/lib.rs +0 -0
- {py_fastplus-0.2.1 → py_fastplus-0.2.2}/src/parser.rs +0 -0
- {py_fastplus-0.2.1 → py_fastplus-0.2.2}/src/python.rs +0 -0
- {py_fastplus-0.2.1 → py_fastplus-0.2.2}/src/python_macro.rs +0 -0
- {py_fastplus-0.2.1 → py_fastplus-0.2.2}/uv.lock +0 -0
|
@@ -187,12 +187,17 @@ jobs:
|
|
|
187
187
|
uses: actions/attest@v4
|
|
188
188
|
with:
|
|
189
189
|
subject-path: 'wheels-*/*'
|
|
190
|
+
- name: Recreate latest release
|
|
191
|
+
if: ${{ steps.release-tag.outputs.tag == 'dev-latest' || steps.release-tag.outputs.tag == 'main-latest' }}
|
|
192
|
+
env:
|
|
193
|
+
GH_TOKEN: ${{ github.token }}
|
|
194
|
+
RELEASE_TAG: ${{ steps.release-tag.outputs.tag }}
|
|
195
|
+
run: gh release delete "$RELEASE_TAG" --yes || true
|
|
190
196
|
- name: Create or update GitHub Release
|
|
191
197
|
uses: softprops/action-gh-release@v3
|
|
192
198
|
with:
|
|
193
199
|
tag_name: ${{ steps.release-tag.outputs.tag }}
|
|
194
|
-
|
|
195
|
-
generate_release_notes: false
|
|
200
|
+
generate_release_notes: true
|
|
196
201
|
append_body: false
|
|
197
202
|
overwrite_files: true
|
|
198
203
|
files: wheels-*/*
|
|
@@ -1220,7 +1220,7 @@ define_operator_registry! {
|
|
|
1220
1220
|
{
|
|
1221
1221
|
"lower" => (Number, None),
|
|
1222
1222
|
"upper" => (Number, None),
|
|
1223
|
-
"inverse" => (Boolean,
|
|
1223
|
+
"inverse" => (Boolean, Some(Constant::Boolean(false))),
|
|
1224
1224
|
"mask" => (Mask, Some(Constant::NaN)),
|
|
1225
1225
|
},
|
|
1226
1226
|
1,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|