Skip to content

Commit

Permalink
Merge pull request #162 from osqp/vb/v0.6.7.post3
Browse files Browse the repository at this point in the history
avoiding duplicate names in artifacts; bumped version to 0.6.7.post3
  • Loading branch information
vineetbansal authored Oct 11, 2024
2 parents a97d18b + 3d7918c commit d6da304
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,5 +75,5 @@ jobs:
- name: Upload artifacts to github
uses: actions/upload-artifact@v4
with:
name: wheels
name: wheels-${{ matrix.os }}
path: ./wheelhouse
2 changes: 1 addition & 1 deletion src/osqp/codegen/files_to_generate/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ def finalize_options(self):


setup(name='PYTHON_EXT_NAME',
version='0.6.7.post2',
version='0.6.7.post3',
author='Bartolomeo Stellato, Goran Banjac',
author_email='[email protected]',
description='This is the Python module for embedded OSQP: ' +
Expand Down
2 changes: 1 addition & 1 deletion src/osqp/interface.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""
Python interface module for OSQP solver v0.6.7.post2
Python interface module for OSQP solver v0.6.7.post3
"""
from __future__ import print_function
from builtins import object
Expand Down
2 changes: 1 addition & 1 deletion src/osqppurepy/_osqp.py
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,7 @@ class OSQP(object):
work - workspace
"""
def __init__(self):
self._version = "0.6.7.post2"
self._version = "0.6.7.post3"

@property
def version(self):
Expand Down

0 comments on commit d6da304

Please sign in to comment.