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

PyPy 7.3.12 #30

Merged
merged 2 commits into from
Aug 30, 2023
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
29 changes: 12 additions & 17 deletions .azure-pipelines/azure-pipelines-linux.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions .azure-pipelines/azure-pipelines-osx.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 7 additions & 7 deletions .azure-pipelines/azure-pipelines-win.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,8 @@ python_version:
- 3.8.16
target_platform:
- linux-64
version:
- 7.3.11
zip_keys:
- - python_version
- version
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,11 @@ pin_run_as_build:
python:
- 3.10.* *_cpython
python_version:
- 3.9.16
- 3.9.17
target_platform:
- linux-64
version:
- 7.3.12
zip_keys:
- - python_version
- version
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,8 @@ python_version:
- 3.8.16
target_platform:
- linux-aarch64
version:
- 7.3.11
zip_keys:
- - python_version
- version
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,11 @@ pin_run_as_build:
python:
- 3.10.* *_cpython
python_version:
- 3.9.16
- 3.9.17
target_platform:
- linux-aarch64
version:
- 7.3.12
zip_keys:
- - python_version
- version
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,8 @@ python_version:
- 3.8.16
target_platform:
- linux-ppc64le
version:
- 7.3.11
zip_keys:
- - python_version
- version
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,11 @@ pin_run_as_build:
python:
- 3.10.* *_cpython
python_version:
- 3.9.16
- 3.9.17
target_platform:
- linux-ppc64le
version:
- 7.3.12
zip_keys:
- - python_version
- version
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,8 @@ python_version:
- 3.8.16
target_platform:
- osx-64
version:
- 7.3.11
zip_keys:
- - python_version
- version
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,11 @@ pin_run_as_build:
python:
- 3.10.* *_cpython
python_version:
- 3.9.16
- 3.9.17
target_platform:
- osx-64
version:
- 7.3.12
zip_keys:
- - python_version
- version
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,8 @@ python_version:
- 3.8.16
target_platform:
- win-64
version:
- 7.3.11
zip_keys:
- - python_version
- version
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@ pin_run_as_build:
python:
- 3.10.* *_cpython
python_version:
- 3.9.16
- 3.9.17
target_platform:
- win-64
version:
- 7.3.12
zip_keys:
- - python_version
- version
4 changes: 2 additions & 2 deletions .scripts/build_steps.sh

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions .scripts/run_osx_build.sh

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

48 changes: 24 additions & 24 deletions README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 10 additions & 1 deletion recipe/conda_build_config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,16 @@ python_version:
# - 3.6.12
# - 3.7.12
- 3.8.16
- 3.9.16
- 3.9.17
# Python 3.8 got dropped as of PyPy 7.3.12
version:
- 7.3.11
- 7.3.12

zip_keys:
-
- python_version
- version

# override python-variants from global pinning as rerender otherwise needlessly
# creates duplicate CI jobs based on picking up something from meta.yaml
Expand Down
6 changes: 4 additions & 2 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
{% set version = "7.3.11" %}
{% if version is not defined %}
{% set version = "7.3.12" %}
{% endif %}
{% if python_version is not defined %}
{% set python_version = "3.8.16" %}
{% set python_version = "3.9.17" %}
{% endif %}
{% set cffi_version = "1.15.1" %}
{% set python_maj_min = ".".join(python_version.split(".")[:2]) %}
Expand Down