Skip to content
This repository has been archived by the owner on Feb 4, 2023. It is now read-only.

Commit

Permalink
update CI
Browse files Browse the repository at this point in the history
  • Loading branch information
sdpython committed Jan 9, 2021
1 parent 401ceee commit 30812fb
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 2 deletions.
3 changes: 3 additions & 0 deletions README.rst
Expand Up @@ -18,6 +18,9 @@ wrapclib
.. image:: https://circleci.com/gh/sdpython/wrapclib/tree/master.svg?style=svg
:target: https://circleci.com/gh/sdpython/wrapclib/tree/master

.. image:: https://dev.azure.com/xavierdupre3/wrapclib/_apis/build/status/sdpython.wrapclib
:target: https://dev.azure.com/xavierdupre3/wrapclib/

.. image:: https://badge.fury.io/py/wrapclib.svg
:target: https://pypi.org/project/wrapclib/

Expand Down
6 changes: 6 additions & 0 deletions azure-pipelines.yml
Expand Up @@ -12,6 +12,8 @@ jobs:
inputs:
versionSpec: '$(python.version)'
architecture: 'x64'
- script: git submodule update --recursive
displayName: 'submodules'
- script: sudo apt-get update
displayName: 'AptGet Update'
- script: sudo apt-get install -y pandoc
Expand Down Expand Up @@ -71,6 +73,8 @@ jobs:
inputs:
versionSpec: '$(python.version)'
architecture: 'x64'
- script: git submodule update --recursive
displayName: 'submodules'
- script: python -m pip install --upgrade pip setuptools wheel wcwidth backcall
displayName: 'Install tools'
- script: pip install -r requirements.txt
Expand Down Expand Up @@ -106,6 +110,8 @@ jobs:
architecture: 'x64'
- script: gcc --version
displayName: 'gcc version'
- script: git submodule update --recursive
displayName: 'submodules'
- script: |
brew update
displayName: 'brew update'
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -202,7 +202,7 @@ def write_version():
root = os.path.abspath(os.path.dirname(__file__))

if sys.platform.startswith("win"):
libraries_re2 = ['kernel32']
libraries_re2 = ['kernel32', '-std=c++11']
extra_compile_args_re2 = None
elif sys.platform.startswith("darwin"):
libraries_re2 = None
Expand Down
2 changes: 1 addition & 1 deletion wrapclib/__init__.py
Expand Up @@ -5,7 +5,7 @@
:epkg:`Python` + some C libraries.
"""

__version__ = "0.1.60"
__version__ = "0.1.63"
__author__ = "Xavier Dupré"
__github__ = "https://github.com/sdpython/wrapclib"
__url__ = "http://www.xavierdupre.fr/app/wrapclib/helpsphinx/index.html"
Expand Down

0 comments on commit 30812fb

Please sign in to comment.