Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
56 changes: 55 additions & 1 deletion .github/workflows/build-and-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,60 @@ jobs:
with:
python-version: ${{ matrix.python-version }}

stress-test-windows:
needs: wheels-windows
strategy:
fail-fast: false
matrix:
include:
- python-version: "3.9"
python-tag: "39"
architecture: "AMD64"
- python-version: "3.10"
python-tag: "310"
architecture: "AMD64"
- python-version: "3.11"
python-tag: "311"
architecture: "AMD64"
- python-version: "3.12"
python-tag: "312"
architecture: "AMD64"
- python-version: "3.13"
python-tag: "313"
architecture: "AMD64"
- python-version: "3.14"
python-tag: "314"
architecture: "AMD64"
uses: ./.github/workflows/test-windows-wheel.yml
with:
python-version: ${{ matrix.python-version }}
pytest-markers: "-m 'stress_test'"
timeout-minutes: 60

stress-test-linux:
needs: wheels-linux
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
uses: ./.github/workflows/test-linux-wheel.yml
with:
python-version: ${{ matrix.python-version }}
pytest-markers: "-m 'stress_test'"
timeout-minutes: 60

stress-test-macos:
needs: wheels-macos
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
uses: ./.github/workflows/test-mac-wheel.yml
with:
python-version: ${{ matrix.python-version }}
pytest-markers: "-m 'stress_test'"
timeout-minutes: 60

sdist:
runs-on: ubuntu-latest
steps:
Expand All @@ -128,7 +182,7 @@ jobs:
deploy-to-pypi:
name: Deploy to PyPI (Manual)
runs-on: ubuntu-latest
needs: [sdist, test-wheels-linux, test-wheels-windows, test-wheels-macos]
needs: [sdist, test-wheels-linux, test-wheels-windows, test-wheels-macos, stress-test-linux, stress-test-windows, stress-test-macos]
environment: pypi-deployment
permissions:
id-token: write
Expand Down
2 changes: 1 addition & 1 deletion dbzero/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

setup(
name='dbzero',
version='0.1.2-alpha',
version='0.1.2',
description='DBZero community edition',
packages=['dbzero'],
python_requires='>=3.9',
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ requires = ['meson-python']

[project]
name = 'dbzero'
version = '0.1.2-alpha'
version = '0.1.2'
description = 'A state management system for Python 3.x that unifies your applications business logic, data persistence, and caching into a single, efficient layer.'
readme = 'README.md'
requires-python = '>=3.9'
Expand Down