Skip to content

Commit

Permalink
Merge pull request #30 from h-vetinari/bump
Browse files Browse the repository at this point in the history
PyPy 7.3.12
  • Loading branch information
isuruf authored Aug 30, 2023
2 parents 2c30014 + 64ae943 commit cf8ddf4
Show file tree
Hide file tree
Showing 18 changed files with 121 additions and 65 deletions.
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

0 comments on commit cf8ddf4

Please sign in to comment.