Skip to content

Commit b474e25

Browse files
authored
[RAPTOR-7857] release DRUM 1.9.0 supporting Py 3.9 (#598)
1 parent 3ff76a7 commit b474e25

File tree

4 files changed

+10
-4
lines changed

4 files changed

+10
-4
lines changed

custom_model_runner/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
8+
#### [1.9.0] - 2022-03-21
9+
##### Added
10+
- DRUM support Python 3.9
11+
712
#### [1.8.0] - 2022-02-18
813
##### Added
914
- Built-in support for ONNX models

custom_model_runner/datarobot_drum/drum/description.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@
44
This is proprietary source code of DataRobot, Inc. and its affiliates.
55
Released under the terms of DataRobot Tool and Utility Agreement.
66
"""
7-
version = "1.8.0"
7+
version = "1.9.0"
88
__version__ = version
99
project_name = "datarobot-drum"

custom_model_runner/requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ scipy>=1.1,<2
1515
strictyaml==1.4.2
1616
texttable
1717
py4j~=0.10.9.0
18-
pyarrow>=0.14.1,<=2.0.0
18+
pyarrow>=0.14.1,<=3.0.0
1919
Pillow<=9.0.1
20-
julia==0.5.6
20+
julia<=0.5.7
2121
termcolor
2222
packaging
2323
markupsafe==2.0.1

custom_model_runner/setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@
4747
"Programming Language :: Python :: 3.6",
4848
"Programming Language :: Python :: 3.7",
4949
"Programming Language :: Python :: 3.8",
50+
"Programming Language :: Python :: 3.9",
5051
"License :: OSI Approved :: Apache Software License",
5152
"Operating System :: MacOS",
5253
"Operating System :: POSIX",
@@ -63,5 +64,5 @@
6364
scripts=["bin/drum"],
6465
install_requires=requirements,
6566
extras_require=extras_require,
66-
python_requires=">=3.4,<3.9",
67+
python_requires=">=3.4,<3.10",
6768
)

0 commit comments

Comments
 (0)