Skip to content

Commit

Permalink
Merge pull request #57 from beeware/version-bump
Browse files Browse the repository at this point in the history
Bump versions of support packages
  • Loading branch information
freakboy3742 committed Sep 9, 2024
2 parents 8a7da97 + d3e71ca commit 65dd299
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 16 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,3 +63,10 @@ jobs:
run: |
source ./setup-iOS.sh $(cut -d- -f1 <<< ${{ matrix.python-version }})
forge iOS lru-dict
# Build an example of a simple Python package using C++
# Calling setup script activates existing environment
- name: Build brotli
run: |
source ./setup-iOS.sh $(cut -d- -f1 <<< ${{ matrix.python-version }})
forge iOS brotli
7 changes: 1 addition & 6 deletions recipes/brotli/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,3 @@
package:
name: Brotli
version: 1.0.9

build:
# This is only needed because CXX is configured to be `clang`, not `clang++`
script_env:
- LDFLAGS=-lstdc++
version: 1.1.0
5 changes: 0 additions & 5 deletions recipes/pandas/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,3 @@
package:
name: pandas
version: 1.5.3

build:
# This is only needed because CXX is configured to be `clang`, not `clang++`
script_env:
- LDFLAGS=-lstdc++
10 changes: 5 additions & 5 deletions setup-iOS.sh
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,11 @@ if [ -z "$PYTHON_APPLE_SUPPORT" ]; then
if [ ! -d "$MOBILE_FORGE_SUPPORT_PATH/$PYTHON_VER/iOS" ]; then
if [ -z "$2" ]; then
case $PYTHON_VER in
3.9) SUPPORT_REVISION=13 ;;
3.10) SUPPORT_REVISION=9 ;;
3.11) SUPPORT_REVISION=4 ;;
3.12) SUPPORT_REVISION=3 ;;
3.13) SUPPORT_REVISION=0 ;;
3.9) SUPPORT_REVISION=14 ;;
3.10) SUPPORT_REVISION=10 ;;
3.11) SUPPORT_REVISION=5 ;;
3.12) SUPPORT_REVISION=4 ;;
3.13) SUPPORT_REVISION=1 ;;
*)
echo "No default support revision for $PYTHON_VER is known; it must be specified manually"
return
Expand Down

0 comments on commit 65dd299

Please sign in to comment.