Skip to content

Commit

Permalink
Send password in request body (#32)
Browse files Browse the repository at this point in the history
* Send credentials during registration in body

* Store last train set uid in classifier/regressor class (#33)

* Send credentials during registration in body
  • Loading branch information
davidotte committed Aug 19, 2024
1 parent 1e6f73f commit 575ea39
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "tabpfn-client"
version = "0.0.20"
version = "0.0.21"
requires-python = ">=3.10"
dependencies = [
"httpx>=0.24.1",
Expand Down
2 changes: 1 addition & 1 deletion tabpfn_client/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,7 @@ def register(

response = self.httpx_client.post(
self.server_endpoints.register.path,
params={
json={
"email": email,
"password": password,
"password_confirm": password_confirm,
Expand Down

0 comments on commit 575ea39

Please sign in to comment.