Skip to content

Commit 30edb70

Browse files
committed
Bump to 1.1.4
Corrected error in setup script (requests_oauthlib vs requests-oauthlib) which caused anaconda build scripts to fail.
1 parent 0fc458d commit 30edb70

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

QOpenScienceFramework/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "1.1.3"
1+
__version__ = "1.1.4"
22
__author__ = "Daniel Schreij"
33

44
import os

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
'arrow',
2828
'humanize',
2929
'python-fileinspector',
30-
'requests_oauthlib',
30+
'requests-oauthlib',
3131
'qtawesome',
3232
],
3333
include_package_data=True,

upload_to_pypi

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#!/bin/bash
2+
rm -Rf deb_dist dist
3+
python setup.py sdist upload
4+
python setup.py bdist_wheel upload

0 commit comments

Comments
 (0)