Skip to content

Commit 244372f

Browse files
authored
Update deps (#155)
* Bump pyarrow * Bump version * Fix changelog * Autogen the missing changelog entries * Feedback changes * Cleanup
1 parent b5371a5 commit 244372f

File tree

6 files changed

+72
-145
lines changed

6 files changed

+72
-145
lines changed

CHANGELOG.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,39 @@
11
# Changelog
22

3+
## v0.7.6
4+
5+
* Updated pyarrow to 22.0.0
6+
* Regenerated protobuf files with protobuf 4.25.0 compiler
7+
8+
## v0.7.5
9+
10+
* Update setup.py to support Python 3.13 (#154)
11+
* Migrate Python SDK files for Rel v0.2 (#153)
12+
13+
## v0.7.4
14+
15+
* Fix polling duration calculation in `poll_with_specified_overhead` function (#151)
16+
17+
## v0.7.3
18+
19+
* Add suspend/resume engine to the api (#150)
20+
* Polling fix (#149)
21+
22+
## v0.7.2
23+
24+
* Create `~/.rai` directory if necessary (#147)
25+
26+
## v0.7.1
27+
28+
* Upgrade dependencies to support Python 3.12 (#146)
29+
* Relax pandas requirement to be conditional on Python version support
30+
* Update version constraints to maintain Python 3.7 and 3.8 support
31+
32+
## v0.7.0
33+
34+
* Added read only user support (#144)
35+
* Fix access token `created_on` attribute setting (#143)
36+
337
## v0.6.20
438

539
* Add suspend/resume engine to the api

railib/__init__.py

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

15-
__version_info__ = (0, 7, 5)
15+
__version_info__ = (0, 7, 6)
1616
__version__ = ".".join(map(str, __version_info__))

railib/pb/message_pb2.py

Lines changed: 9 additions & 25 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

railib/pb/schema_pb2.py

Lines changed: 25 additions & 117 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ grpcio>=1.54.0,<=1.60.1
22
grpcio-tools>=1.47.0,<=1.60.1
33
protobuf>=3.20.3,<5.0.0
44
pandas<3.0.0
5-
pyarrow>=10.0.0,<16.0.0
5+
pyarrow>=10.0.0,<23.0.0
66
requests-toolbelt==1.0.0

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,12 @@
3333
"Programming Language :: Python :: 3.10",
3434
"Programming Language :: Python :: 3.11",
3535
"Programming Language :: Python :: 3.12",
36+
"Programming Language :: Python :: 3.13",
3637
],
3738
description="The RelationalAI Software Development Kit for Python",
3839
install_requires=[
3940
"pandas>=2.0.0,<3.0.0;python_version>'3.8'",
40-
"pyarrow>=10.0.0,<16.0.0",
41+
"pyarrow>=10.0.0,<23.0.0",
4142
"requests-toolbelt==1.0.0",
4243
"protobuf>=3.20.3,<5.0.0"],
4344
license="http://www.apache.org/licenses/LICENSE-2.0",

0 commit comments

Comments
 (0)