Skip to content

Commit 469343a

Browse files
authored
Releases v0.12.1.1 (#255)
1 parent df06c90 commit 469343a

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

odps/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
version_info = (0, 12, 1)
15+
version_info = (0, 12, 1, 1)
1616
_num_index = max(idx if isinstance(v, int) else 0 for idx, v in enumerate(version_info))
1717
__version__ = ".".join(map(str, version_info[: _num_index + 1])) + "".join(
1818
version_info[_num_index + 1 :]

odps/lib/__init__.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,6 @@
1313
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1414
# See the License for the specific language governing permissions and
1515
# limitations under the License.
16+
17+
# make it compatible to imports on PyODPS between 0.11.4 and 0.11.5.
18+
import requests # noqa

0 commit comments

Comments
 (0)