Skip to content

Commit

Permalink
Rebuild for Python 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
mliberty1 committed Nov 11, 2024
1 parent d725980 commit ea796ac
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 11 deletions.
11 changes: 4 additions & 7 deletions .github/workflows/packaging.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2021-2023 Jetperch LLC
# Copyright 2021-2024 Jetperch LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
Expand All @@ -24,7 +24,7 @@ on: ['push', 'pull_request']


env:
PYTHON_VERSION: '3.11'
PYTHON_VERSION: '3.13'


jobs:
Expand Down Expand Up @@ -92,10 +92,7 @@ jobs:
fail-fast: false
matrix:
os: ["ubuntu-latest", "windows-latest", "macos-latest"]
python_version: ["cp39", "cp310", "cp311", "cp312"]
exclude:
- os: "macos-latest"
python_version: "cp39"
python_version: ["cp310", "cp311", "cp312", "cp313"]

steps:
- name: Download sdist
Expand All @@ -115,7 +112,7 @@ jobs:
python-version: ${{ env.PYTHON_VERSION }}

- name: Install cibuildwheel
run: python -m pip install cibuildwheel==2.17.0
run: python -m pip install cibuildwheel==2.21.3

- name: Build wheels
env:
Expand Down
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,20 @@
This file contains the list of changes made to pymonocypher.


# 4.0.2.5

2024 Nov 11

* Rebuild for Python 3.13


## 3.1.3.4

2024 Nov 11

* Rebuild for Python 3.13


## 4.0.2.4

2024 Aug 17
Expand Down
2 changes: 1 addition & 1 deletion c_monocypher.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import warnings


# also edit setup.py
__version__ = '4.0.2.4' # also change setup.py
__version__ = '4.0.2.5' # also change setup.py
__title__ = 'pymonocypher'
__description__ = 'Python ctypes bindings to the Monocypher library'
__url__ = 'https://github.com/jetperch/pymonocypher'
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
import os

MYPATH = os.path.abspath(os.path.dirname(__file__))
VERSION = '4.0.2.4' # also change c_monocypher.pyx
VERSION = '4.0.2.5' # also change c_monocypher.pyx


try:
Expand Down Expand Up @@ -66,17 +66,17 @@
'Topic :: Security :: Cryptography',

# Supported Python versions
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Programming Language :: C',
],

keywords='cryto cryptography monocypher chacha blake2b 25519',
install_requires=[],
ext_modules=extensions,
python_requires='~=3.9',
python_requires='~=3.10',

project_urls={
'Bug Reports': 'https://github.com/jetperch/pymonocypher/issues',
Expand Down

0 comments on commit ea796ac

Please sign in to comment.