Skip to content

Commit be2bda1

Browse files
update dimod to 0.13.x (#198)
* update dimod to 0.13.x * run upload_test_pypi only for master branch
1 parent aafc0df commit be2bda1

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/build_and_upolad.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -177,6 +177,7 @@ jobs:
177177
upload_test_pypi:
178178
needs: [build_wheels, build_sdist]
179179
runs-on: ubuntu-latest
180+
if: github.ref == 'refs/heads/master'
180181
steps:
181182
- uses: actions/download-artifact@v2
182183
with:

pyqubo/package_info.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# (major, minor, patch, prerelease)
22

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

setup.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -136,10 +136,9 @@ def __getattribute__(self, name):
136136

137137
install_requires = [
138138
'numpy>=1.17.3',
139-
'dimod>=0.9.14, <0.12',
139+
'dimod>=0.9.14, <0.13',
140140
'dwave-neal>=0.5.7',
141141
'Deprecated>=1.2.12',
142-
#'jij-cimod>=1.0.1'
143142
'six>=1.15.0'
144143
]
145144

0 commit comments

Comments
 (0)