Skip to content

Commit

Permalink
Updated dependencies and build for Python 3.12.
Browse files Browse the repository at this point in the history
* Upgraded to FW & FPGA 1.1.0 stable releases.
* Upgraded record entry point to pyjls 0.8.2 to 1.0.0.
  • Loading branch information
mliberty1 committed Oct 25, 2023
1 parent 063f36d commit 68bdd52
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/packaging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ jobs:
fail-fast: false
matrix:
os: ["ubuntu-latest", "windows-latest", "macos-latest"]
python_version: ["cp39", "cp310", "cp311"]
python_version: ["cp39", "cp310", "cp311", "cp312"]

steps:
- name: Download sdist
Expand All @@ -173,7 +173,7 @@ jobs:
run: echo "filename=$(ls dist/*.tar.gz)" >> $GITHUB_OUTPUT

- name: Build wheels
uses: pypa/cibuildwheel@v2.13.0
uses: pypa/cibuildwheel@v2.16.2
env:
CIBW_ARCHS_MACOS: universal2
CIBW_ARCHS_WINDOWS: native
Expand Down
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,12 @@ This file contains the list of changes made to the Joulescope driver.

## 1.3.19

2023 Oct 5 [in progress]
2023 Oct 25

* Fixed help text for "program" entry point.
* Build for Python 3.12.
* Upgraded to FW & FPGA 1.1.0 stable releases.
* Upgraded record entry point to pyjls 0.8.2 to 1.0.0.


## 1.3.18
Expand Down
2 changes: 1 addition & 1 deletion pyjoulescope_driver/record.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
import logging


_PYJLS_VERSION_MIN = (0, 7, 2) # inclusive
_PYJLS_VERSION_MIN = (0, 8, 2) # inclusive
_PYJLS_VERSION_MAX = (1, 0, 0) # exclusive


Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -244,6 +244,7 @@ def run(self):
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: Implementation :: CPython',

# Topics
Expand Down

0 comments on commit 68bdd52

Please sign in to comment.