Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

py3-bcrypt-3.2: new version stream #47426

Merged
merged 3 commits into from
Mar 20, 2025
Merged
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
80 changes: 80 additions & 0 deletions py3-bcrypt-3.2.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
package:
name: py3-bcrypt-3.2
version: "3.2.2"
epoch: 0
description: Modern password hashing for your software and your servers
copyright:
- license: Apache-2.0
dependencies:
provider-priority: 0

vars:
pypi-package: bcrypt
import: bcrypt

data:
- name: py-versions
items:
3.10: '310'
3.11: '311'
3.12: '312'
3.13: '313'

environment:
contents:
packages:
- py3-supported-build-base-dev
- py3-supported-cffi

pipeline:
- uses: git-checkout
with:
expected-commit: a86360fef7859054c6a8050cf67e62127f5e2643
repository: https://github.com/pyca/bcrypt
tag: ${{package.version}}

subpackages:
- range: py-versions
name: py${{range.key}}-${{vars.pypi-package}}-3.2
description: python${{range.key}} version of ${{vars.pypi-package}}
dependencies:
provider-priority: ${{range.value}}
provides:
- py3-${{vars.pypi-package}}
runtime:
- py${{range.key}}-cffi
pipeline:
- uses: py/pip-build-install
with:
python: python${{range.key}}
- uses: strip
test:
pipeline:
- uses: python/import
with:
python: python${{range.key}}
imports: |
import ${{vars.import}}

- name: py3-supported-${{vars.pypi-package}}-3.2
description: meta package providing ${{vars.pypi-package}} for supported python versions.
dependencies:
runtime:
- py3.10-${{vars.pypi-package}}-3.2
- py3.11-${{vars.pypi-package}}-3.2
- py3.12-${{vars.pypi-package}}-3.2
- py3.13-${{vars.pypi-package}}-3.2
test:
pipeline:
- uses: python/import
with:
python: python3.10
import: ${{vars.pypi-package}}

update:
enabled: true
manual: false
github:
identifier: pyca/bcrypt
use-tag: true
tag-filter: 3.2.
Loading