Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Version 15.6.1. Typing. Python 3.12 test. #50

Merged
merged 1 commit into from
Oct 23, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.9", "3.10", "3.11"]
python-version: ["3.9", "3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v3
Expand Down
4 changes: 4 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
Changelog (niondata)
====================

15.6.1 (2023-10-23)
-------------------
- Minor update for typing compatibility.

15.6.0 (2023-08-17)
-------------------
- Reapply DataMetadata read-only accessors change.
Expand Down
6 changes: 3 additions & 3 deletions meta.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
package:
name: 'niondata'
version: '15.6.0'
version: '15.6.1'

source:
git_rev: 15.6.0
git_rev: 15.6.1
git_url: https://github.com/nion-software/niondata.git

build:
Expand All @@ -19,7 +19,7 @@ requirements:
- setuptools
run:
- python >=3.9
- nionutils >=0.4.5,<0.5.0
- nionutils >=0.4.5,<5.0.0
- scipy
- numpy >=1.21,<2.0

Expand Down
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = niondata
version = 15.6.0
version = 15.6.1
author = Nion Software
author_email = swift@nion.com
description = A data processing library for Nion Swift.
Expand All @@ -20,7 +20,7 @@ python_requires = >=3.9
install_requires =
numpy>=1.21,<2.0
scipy
nionutils>=0.4.5,<0.5.0
nionutils>=0.4.5,<5.0.0

[options.packages.find]
include = nion, nion.data, nion.data.test
Expand Down