Skip to content

Commit

Permalink
update dimod to 0.13.x (#198)
Browse files Browse the repository at this point in the history
* update dimod to 0.13.x
* run upload_test_pypi only for master branch
  • Loading branch information
kotarotanahashi authored Nov 1, 2022
1 parent aafc0df commit be2bda1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
1 change: 1 addition & 0 deletions .github/workflows/build_and_upolad.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,7 @@ jobs:
upload_test_pypi:
needs: [build_wheels, build_sdist]
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/master'
steps:
- uses: actions/download-artifact@v2
with:
Expand Down
2 changes: 1 addition & 1 deletion pyqubo/package_info.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# (major, minor, patch, prerelease)

VERSION = (1, 3, 0, "")
VERSION = (1, 3, 1, "")
__shortversion__ = '.'.join(map(str, VERSION[:3]))
__version__ = '.'.join(map(str, VERSION[:3])) + "".join(VERSION[3:])

Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,10 +136,9 @@ def __getattribute__(self, name):

install_requires = [
'numpy>=1.17.3',
'dimod>=0.9.14, <0.12',
'dimod>=0.9.14, <0.13',
'dwave-neal>=0.5.7',
'Deprecated>=1.2.12',
#'jij-cimod>=1.0.1'
'six>=1.15.0'
]

Expand Down

0 comments on commit be2bda1

Please sign in to comment.