Skip to content

Commit

Permalink
Add missing quotation marks in Python Dependencies warning (#10)
Browse files Browse the repository at this point in the history
* Add missing quotes for PYTHON in warning

* Bump version
  • Loading branch information
kimlaberinto authored Jun 9, 2021
1 parent cbf085e commit af67b4e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "CatBoost"
uuid = "e2e10f9a-a85d-4fa9-b6b2-639a32100a12"
authors = ["Beacon Biosignals, Inc."]
version = "0.1.1"
version = "0.1.2"

[deps]
Conda = "8f4d0f93-b110-5947-807f-2305c1781a2d"
Expand Down
2 changes: 1 addition & 1 deletion src/CatBoost.jl
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ function __init__()
Python Dependencies not installed
Please either:
- Rebuild PyCall to use Conda, by running in the julia REPL:
- `ENV[PYTHON]=""; Pkg.build("PyCall"); Pkg.build("CatBoost")`
- `ENV["PYTHON"]=""; Pkg.build("PyCall"); Pkg.build("CatBoost")`
- Or install the depencences, eg by running pip
- `pip install catboost pandas`
""")
Expand Down

2 comments on commit af67b4e

@ericphanson
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/38487

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.1.2 -m "<description of version>" af67b4e260868559abdd4920d62ffdfd01d95b25
git push origin v0.1.2

Please sign in to comment.