Skip to content

Commit

Permalink
[SPARK-32865][DOC] python section in quickstart page doesn't display …
Browse files Browse the repository at this point in the history
…SPARK_VERSION correctly

### What changes were proposed in this pull request?

In https://github.com/apache/spark/blame/master/docs/quick-start.md#L402,it should be `{{site.SPARK_VERSION}}` rather than `{site.SPARK_VERSION}`

### Why are the changes needed?

SPARK_VERSION isn't displayed correctly, as shown below

![image](https://user-images.githubusercontent.com/1892692/93006726-d03c8680-f514-11ea-85e3-1d7cfb682ef2.png)

### Does this PR introduce _any_ user-facing change?

no

### How was this patch tested?

tested locally, as shown below

![image](https://user-images.githubusercontent.com/1892692/93006712-a6835f80-f514-11ea-8d78-6831c9d65265.png)

Closes apache#29738 from bowenli86/doc.

Authored-by: bowen.li <bowenli86@gmail.com>
Signed-off-by: Dongjoon Hyun <dongjoon@apache.org>
  • Loading branch information
bowenli86 authored and dongjoon-hyun committed Sep 13, 2020
1 parent 3d08084 commit 0549c20
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/quick-start.md
Original file line number Diff line number Diff line change
Expand Up @@ -399,7 +399,7 @@ If you are building a packaged PySpark application or library you can add it to

{% highlight python %}
install_requires=[
'pyspark=={site.SPARK_VERSION}'
'pyspark=={{site.SPARK_VERSION}}'
]
{% endhighlight %}

Expand Down

0 comments on commit 0549c20

Please sign in to comment.