Skip to content

Commit 6899148

Browse files
committed
update workflow to compile with numpy 2.x
1 parent 1865e97 commit 6899148

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/python-publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
if: github.ref == 'refs/heads/master'
5353
strategy:
5454
matrix:
55-
os: [ubuntu-latest, windows-2019, macos-13]
55+
os: [ubuntu-latest, windows-2022, macos-13]
5656
#os: [macos-10.15, windows-2019]
5757

5858
steps:
@@ -65,13 +65,13 @@ jobs:
6565
- name: Build wheels
6666
run: python -m cibuildwheel --output-dir wheelhouse
6767
env:
68-
CIBW_BEFORE_BUILD: pip install numpy==1.19.5 setuptools
68+
CIBW_BEFORE_BUILD: pip install numpy setuptools
6969
CIBW_BUILD: cp38-*
7070

7171
- name: Build wheels
7272
run: python -m cibuildwheel --output-dir wheelhouse
7373
env:
74-
CIBW_BEFORE_BUILD: pip install numpy==1.21.6 setuptools
74+
CIBW_BEFORE_BUILD: pip install numpy setuptools
7575
CIBW_BUILD: cp39-* cp310-*
7676
CIBW_ARCHS_MACOS: x86_64 universal2
7777

posym/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
__author__ = 'Abel Carreras'
2-
__version__ = '1.2.3'
2+
__version__ = '1.2.4'
33

44
from posym.tools import list_round, get_principal_axis_angles
55
from posym.pointgroup import PointGroup

0 commit comments

Comments
 (0)