Skip to content

Commit 48dd24b

Browse files
committed
Version 0.0.4
1 parent e12e540 commit 48dd24b

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

.github/workflows/wheels.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
# os: [ubuntu-latest]
1313
# os: [windows-2019] #latest]
1414
# os: [macos-13] # macos-latest]
15-
os: [ubuntu-latest, windows-2019, ubuntu-24.04-arm, macos-13, macos-latest]
15+
os: [ubuntu-latest, windows-2022, ubuntu-24.04-arm, macos-13, macos-latest]
1616

1717
steps:
1818
- uses: actions/checkout@v4
@@ -25,7 +25,7 @@ jobs:
2525

2626
# Apply patch only on Windows
2727
- name: Apply header patch on Windows
28-
if: matrix.os == 'windows-latest'
28+
if: matrix.os == 'windows-2022'
2929
run: |
3030
# Patch MinGW-w64 header files currently causing troubles for eC compiler (C99 .namedmembers assignments in AVX files, and re-defnitions of function type typedef in winbase.h)
3131
#git apply --directory=mingw64 '${{ github.workspace }}\patches\mingw64-gcc-12.2.0-patches.patch'

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
import distutils.ccompiler
1313
from distutils.command.build_ext import build_ext
1414

15-
pkg_version = '0.0.3'
15+
pkg_version = '0.0.4'
1616

1717
env = os.environ.copy()
1818

@@ -206,6 +206,7 @@ def run(self):
206206
'Intended Audience :: Developers',
207207
'Operating System :: Microsoft :: Windows',
208208
'Operating System :: POSIX :: Linux',
209+
'Operating System :: MacOS',
209210
'Programming Language :: Other',
210211
'Programming Language :: Python :: 3',
211212
'Topic :: File Formats :: JSON',

0 commit comments

Comments
 (0)