Skip to content

Commit

Permalink
Merge pull request #370 from rstudio/aron-drop-3.7
Browse files Browse the repository at this point in the history
remove support for Python 3.7
  • Loading branch information
aronatkins committed Mar 21, 2024
2 parents 59f0935 + 24b22aa commit 7e46340
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
python-version: ['3.8', '3.9', '3.10', '3.11']
include:
- os: macos-latest
python-version: '3.9'
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ clean:
rm -rf build/ dist/ docs/out/ rsconnect_jupyter.egg-info/

.PHONY: all-images
all-images: image3.7 image3.8 image3.9 image3.10 image3.11
all-images: image3.8 image3.9 image3.10 image3.11

image%:
docker build \
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Connect](https://www.posit.co/products/enterprise/connect/).

# Requirements

- Python 3.7.0 and higher
- Python 3.8.0 and higher
- Jupyter Notebook 5.x
- [pip](https://pypi.org/project/pip/)
- [wheel](https://pypi.org/project/wheel/)
Expand Down
2 changes: 1 addition & 1 deletion docs/docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ The `rsconnect-jupyter` package is a _Jupyter Notebook_ extension (i.e., `nbexte

## Requirements

- [Python >=3.7](https://www.python.org/downloads/)
- [Python >=3.8](https://www.python.org/downloads/)
- [Jupyter](https://pypi.org/project/jupyter)
- [Notebook >=5,7](https://pypi.org/project/notebook/)
- [Posit Connect](https://www.posit.co/download/posit-connect/) ([supported versions](https://posit.co/support/#supported-connect-versions))
Expand Down
6 changes: 3 additions & 3 deletions selenium/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -559,14 +559,14 @@ make test-env-up PROJECT=rscnet2

##### PY_VERSION

Version of Python to use when launching the Jupyter server. Valid version include 2, 3.6, 3.7
Version of Python to use when launching the Jupyter server. Valid version include 3.8, 3.9

Default Value: `2`

Example usage:
```
make jupyter-up PY_VERSION=2
make test PY_VERSION=2
make jupyter-up PY_VERSION=3.9
make test PY_VERSION=3.9
```

##### PYTESTLOG
Expand Down
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ install_requires =
setup_requires =
setuptools
packages = rsconnect_jupyter
python_requires = >=3.7
python_requires = >=3.8
include_package_data = true
zip_safe = false

[options.extras_require]
test =
black
pytest
pytest

0 comments on commit 7e46340

Please sign in to comment.