Skip to content

Commit

Permalink
Updating to generally support Python 3.9
Browse files Browse the repository at this point in the history
mistivamp committed Nov 9, 2021
1 parent 64ab9e6 commit 0a4f41e
Showing 3 changed files with 26 additions and 26 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -140,21 +140,21 @@ version of the test does not do.
```
brew install zsh-completions
brew install pyenv
pyenv install 3.9.6
pyenv install 3.9.7
```
1. Use [pyenv README documentation](https://github.com/pyenv/pyenv) to finish setting up pyenv
1. Run the following commands
```
brew install pipx
pipx ensurepath
pipx install --python /Users/<user_name>/.pyenv/versions/3.9.6/bin/python3.9 poetry==1.1.10
pipx install --python /Users/<user_name>/.pyenv/versions/3.9.7/bin/python3.9 poetry==1.1.10
poetry help completions
poetry completions zsh > ~/.zfunc/_poetry
```
1. In the repo directory
```
pyenv local 3.9.6
poetry env use 3.9.6
pyenv local 3.9.7
poetry env use 3.9
poetry install
poetry config virtualenvs.path /<fully_qualified_path>/py-dataframe-show-reader/.venv
```
40 changes: 20 additions & 20 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "py-dataframe-show-reader"
version = "2.1.0"
version = "2.1.1"
description = "Reads the output of a DataFrame.show() statement into a DataFrame"
authors = ["Steve Whalen <sjwhalen@yahoo.com>"]
license = "Apache-2.0"
@@ -10,7 +10,7 @@ packages = [
]

[tool.poetry.dependencies]
python = "3.9.6"
python = "^3.9"

[tool.poetry.dev-dependencies]
pyspark = "3.1.2"

0 comments on commit 0a4f41e

Please sign in to comment.