Skip to content

Commit

Permalink
Bump version: 0.6.0 → 0.6.1
Browse files Browse the repository at this point in the history
Signed-off-by: Alexis Jeandet <[email protected]>
  • Loading branch information
jeandet committed Jan 19, 2024
1 parent 0ae904a commit c911544
Show file tree
Hide file tree
Showing 8 changed files with 24 additions and 21 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pythonpublish-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
fail-fast: false
matrix:
python-version: ['cp38-cp38', 'cp39-cp39', 'cp310-cp310', 'cp311-cp311', 'cp312-cp312']
pyside_ver: ['6.6.0']
pyside_ver: ['6.6.1']
steps:
- name: add Python and qt dir to path
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pythonpublish-osx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
max-parallel: 4
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
pyside_ver: ['6.6.0']
pyside_ver: ['6.6.1']
name: Python ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v3
Expand Down Expand Up @@ -56,7 +56,7 @@ jobs:
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
pyside_ver: ['6.6.0']
pyside_ver: ['6.6.1']
runs-on: self-hosted
steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pythonpublish-win.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
max-parallel: 4
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
pyside_ver: ['6.6.0']
pyside_ver: ['6.6.1']
name: Python ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion SciQLopPlots/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
from .SciQLopPlotsBindings import *
from .SciQLopPlotsBindings import _QCustomPlot as QCustomPlot

__version__ = '0.6.0'
__version__ = '0.6.1'
23 changes: 13 additions & 10 deletions SciQLopPlots/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -50,14 +50,14 @@ shiboken_dep = declare_dependency(compile_args: shiboken_build_flags, link_args:

moc_headers = [
'bindings/_QCustomPlot.hpp',
project_source_root+'/include/SciQLopPlots/SciQLopGraph.hpp',
project_source_root+'/include/SciQLopPlots/SciQLopColorMap.hpp',
project_source_root+'/include/SciQLopPlots/SciQLopVerticalSpan.hpp',
project_source_root+'/include/SciQLopPlots/SciQLopPlotItem.hpp',
project_source_root+'/include/SciQLopPlots/SciQLopPlot.hpp',
project_source_root+'/include/SciQLopPlots/SciQLopGraphResampler.hpp',
project_source_root+'/include/SciQLopPlots/SciQLopColorMapResampler.hpp',
project_source_root+'/qcustomplot-source/qcustomplot.h'
project_source_root + '/include/SciQLopPlots/SciQLopGraph.hpp',
project_source_root + '/include/SciQLopPlots/SciQLopColorMap.hpp',
project_source_root + '/include/SciQLopPlots/SciQLopVerticalSpan.hpp',
project_source_root + '/include/SciQLopPlots/SciQLopPlotItem.hpp',
project_source_root + '/include/SciQLopPlots/SciQLopPlot.hpp',
project_source_root + '/include/SciQLopPlots/SciQLopGraphResampler.hpp',
project_source_root + '/include/SciQLopPlots/SciQLopColorMapResampler.hpp',
project_source_root + '/qcustomplot-source/qcustomplot.h'
]

moc_sources = []
Expand All @@ -76,9 +76,12 @@ moc_files = qtmod.preprocess(
sources = moc_files \
+ sciqlopplots_bindings_src \
+ shiboken_generator_out \
+ [ '../src/SciQLopPlot.cpp', '../src/SciQLopPlotItem.cpp',
'../src/SciQLopVerticalSpan.cpp', '../src/SciQLopGraph.cpp',
+ [ '../src/SciQLopPlot.cpp',
'../src/SciQLopPlotItem.cpp',
'../src/SciQLopVerticalSpan.cpp',
'../src/SciQLopGraph.cpp',
'../src/SciQLopColorMap.cpp',
'../src/SciQLopColorMapResampler.cpp',
'../src/BufferProtocol.cpp',
'../qcustomplot-source/qcustomplot.cpp'
]
Expand Down
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
project('SciQLopPlots', 'cpp',default_options : ['cpp_std=c++17', 'buildtype=release'], license: 'GPL3', version: '0.6.0')
project('SciQLopPlots', 'cpp',default_options : ['cpp_std=c++17', 'buildtype=release'], license: 'GPL3', version: '0.6.1')
add_project_arguments(
'-DCATCH_CONFIG_NO_POSIX_SIGNALS', # workaround for this https://github.com/catchorg/Catch2/issues/2192
language: 'cpp',
Expand Down
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ requires = [
"numpy",
"meson-python>=0.14.0",
"meson",
"shiboken6==6.6.0",
"pyside6==6.6.0",
"shiboken6_generator==6.6.0"
"shiboken6==6.6.1",
"pyside6==6.6.1",
"shiboken6_generator==6.6.1"
]
build-backend = 'mesonpy'

Expand All @@ -31,7 +31,7 @@ classifiers = [
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = ['numpy', 'pyside6==6.6.0', 'shiboken6==6.6.0']
dependencies = ['numpy', 'pyside6==6.6.1', 'shiboken6==6.6.1']
dynamic = [
'version',
]
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.6.0
current_version = 0.6.1
commit = True
tag = True

Expand Down

0 comments on commit c911544

Please sign in to comment.