Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@ To set up an environment whereby you can easily test/evaluate your code blocks d
[info] Running 'python setup.py build bdist_wheel' in '<src-root>/pyrasterframes/target/python'
... more noise ...
[info] Python .whl file written to '<src-root>/pyrasterframes/target/python/dist/pyrasterframes-0.8.0.dev0-py2.py3-none-any.whl'
[info] Maven Python .zip artifact written to '<src-root>/pyrasterframes/target/scala-2.11/pyrasterframes-python-0.8.0-SNAPSHOT.zip'
[success] Total time: 83 s, completed Jul 5, 2019 12:25:48 PM
sbt:RasterFrames>
```
Expand Down
2 changes: 1 addition & 1 deletion project/PythonBuildPlugin.scala
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ object PythonBuildPlugin extends AutoPlugin {
val pyDest = (packageBin / artifactPath).value
val whl = pyWhl.value
IO.copyFile(whl, pyDest)
log.info(s"Maven Python .zip artifact written to '$pyDest'")
log.info(s"Maven Python artifact written to '$pyDest'")
pyDest
}.dependsOn(pyWhl)

Expand Down
4 changes: 2 additions & 2 deletions pyrasterframes/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ sbt pyrasterframes/package # alias 'pyBuild'

Observe the output messages such as:

[info] Python .whl file written to '/Users/monty/rasterframes/pyrasterframes/target/python/dist/pyrasterframes-0.8.0.dev0-py2.py3-none-any.whl'
[info] Python .whl file written to '/Users/monty/rasterframes/pyrasterframes/target/python/dist/pyrasterframes-${VERSION}-py2.py3-none-any.whl'

This wheel is suitable for publishing to a package index. See [packaging.python.org](https://packaging.python.org/tutorials/packaging-projects/#uploading-the-distribution-archives).

Expand Down Expand Up @@ -162,4 +162,4 @@ Or to build a specific document with desired output format:
sbt 'pySetup pweave -f notebook -s docs/numpy-pandas.pymd'
```

*Note: You may need to run `sbt pyrasterframes/package` at least once for certain `pySetup` commands to work.*
*Note: You may need to run `sbt pyrasterframes/package` and/or `sbt pyTest` at least once for certain `pySetup` commands to work.*