Projects
rs485
python-pycmox
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 3
View file
python-pycmox.changes
Changed
@@ -1,4 +1,9 @@ ------------------------------------------------------------------- +Mon Aug 12 09:00:21 UTC 2024 - Matwey V. Kornilov <matwey@sai.msu.ru> + +- Version 0.2.1 + +------------------------------------------------------------------- Sun Jan 1 11:03:22 UTC 2023 - Matwey V. Kornilov <matwey@sai.msu.ru> - Version 0.2.0
View file
python-pycmox.spec
Changed
@@ -1,7 +1,7 @@ # # spec file for package python-pycmox # -# Copyright (c) 2023 SUSE LLC +# Copyright (c) 2024 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -19,7 +19,7 @@ %{?!python_module:%define python_module() python-%{**} python3-%{**}} Name: python-pycmox -Version: 0.2.0 +Version: 0.2.1 Release: 0 Summary: Python wrapper for RS485 exchange License: LGPL-3.0-or-later
View file
_service
Changed
@@ -1,7 +1,7 @@ <services> <service name="tar_scm" mode="disabled"> <param name="url">http://curl.sai.msu.ru/hg/pycmox</param> - <param name="revision">0.2.0</param> + <param name="revision">0.2.1</param> <param name="versionformat">{latesttag}</param> <param name="scm">hg</param> </service>
View file
pycmox-0.2.0.tar.xz/.hgtags -> pycmox-0.2.1.tar.xz/.hgtags
Changed
@@ -1 +1,2 @@ 3342af332420fe26a1bfe19e3866c27ac1cd95cb 0.1.0 +dd2a6e5d5116ebb39d0258cbcc4f1fab85bb537f 0.2.0
View file
pycmox-0.2.0.tar.xz/README.rst -> pycmox-0.2.1.tar.xz/README.rst
Changed
@@ -24,14 +24,14 @@ :: - pip install hg+https://curl.sai.msu.ru/hg/pycmox#egg=pycmox + pip install pycmox Requiring in ``requirements.txt`` --------------------------------- :: - hg+https://curl.sai.msu.ru/hg/pycmox#egg=pycmox + pycmox Requiring in ``setup.py`` ------------------------- @@ -39,13 +39,13 @@ :: install_requires = - 'pycmox @ hg+https://curl.sai.msu.ru/hg/pycmox#egg=pycmox', + 'pycmox', License ======= -Copyright (C) 2021-2023 Matwey V. Kornilov <matwey.kornilov@gmail.com> +Copyright (C) 2021-2024 Matwey V. Kornilov <matwey.kornilov@gmail.com> This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
View file
pycmox-0.2.0.tar.xz/setup.py -> pycmox-0.2.1.tar.xz/setup.py
Changed
@@ -1,27 +1,26 @@ import os import sys -from setuptools import setup, Extension +from setuptools import setup +from pybind11.setup_helpers import Pybind11Extension -with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as readme: - README = readme.read() - # allow setup.py to be run from any path os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir))) -tree = Extension('pycmox', - sources = 'src/pycmox.cpp', 'src/infras/exchange.cpp', - include_dirs = 'src/infras', - language = 'c++', - extra_compile_args = '-std=gnu++11', - define_macros = ('NO_RS485_LEGACY', None)) +with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as readme: + README = readme.read() + +pycmox = Pybind11Extension('pycmox', + sources = 'src/pycmox.cpp', 'src/infras/exchange.cpp', + cxx_std = 11, + include_dirs = 'src/infras', + define_macros = ('NO_RS485_LEGACY', None)) setup( name='pycmox', - version='0.2.0', + version='0.2.1', packages=, - ext_modules=tree, - install_requires='pybind11', + ext_modules=pycmox, include_package_data=True, license='LGPL-3.0-or-later', description='A Python wrapper for lmox',
Locations
Projects
Search
Status Monitor
Help
Open Build Service
OBS Manuals
API Documentation
OBS Portal
Reporting a Bug
Contact
Mailing List
Forums
Chat (IRC)
Twitter
Open Build Service (OBS)
is an
openSUSE project
.