Skip to content

Commit

Permalink
feat: update python to 3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
kelsos committed Jan 5, 2024
1 parent 221f88d commit 10bd3a0
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ on:
- main

env:
LIB_VERSION: '2023.7.1'
PYTHON_VERSION: '3.10.11'
CIBW_VERSION: '2.13.1'
CIBW_BUILD: 'cp310-*'
LIB_VERSION: '2024.1.1'
PYTHON_VERSION: '3.11.7'
CIBW_VERSION: '2.16.2'
CIBW_BUILD: 'cp311-*'
CIBW_SKIP: '*-musllinux_*'
CIBW_BUILD_VERBOSITY: 1

Expand Down Expand Up @@ -99,7 +99,7 @@ jobs:
with:
submodules: true
- name: Set up python
uses: actions/setup-python@v3
uses: actions/setup-python@v5
with:
python-version: ${{ env.PYTHON_VERSION }}
cache: 'pip'
Expand Down Expand Up @@ -137,7 +137,7 @@ jobs:
python-version: ${{ env.PYTHON_VERSION }}
cache: 'pip'
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
uses: docker/setup-qemu-action@v3
if: ${{ matrix.arch == 'aarch64' }}
with:
platforms: arm64
Expand Down
2 changes: 1 addition & 1 deletion patches/pysqlcipher3.diff.j2
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ diff --git a/setup.py b/setup.py
# If you need to change anything, it should be enough to change setup.cfg.

PACKAGE_NAME = "pysqlcipher3"
-VERSION = '1.1.0'
-VERSION = '1.2.1'
+VERSION = '{{version}}'
LONG_DESCRIPTION = \
"""Python interface to SQLCipher
Expand Down

0 comments on commit 10bd3a0

Please sign in to comment.