Skip to content

Commit

Permalink
Merge pull request #337 from rstudio/mm-ci-python-35-36
Browse files Browse the repository at this point in the history
Stop testing 3.5 and 3.6
  • Loading branch information
Lytol authored Jan 12, 2023
2 parents 7f2c6b8 + fbae6fe commit a775dbf
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 9 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
python-version: ['3.5', '3.6', '3.7', '3.8', '3.9', '3.10']
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
include:
- os: macos-latest
python-version: '3.9'
Expand All @@ -33,8 +33,7 @@ jobs:
- run: make prereqs
- run: make version
- run: make install
- if: matrix.python-version >= '3.6'
run: make lint
- run: make lint
- run: make test
selenium:
runs-on: ubuntu-latest
Expand Down
10 changes: 5 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ clean:
rm -rf build/ dist/ docs/out/ rsconnect_jupyter.egg-info/

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

image%:
docker build \
Expand All @@ -46,7 +46,7 @@ image%:
.

.PHONY: all-tests
all-tests: test2.7 test3.5 test3.6 test3.7 test3.8
all-tests: test3.7 test3.8 test3.9 test3.10 test3.11

.PHONY: test
test: version-frontend
Expand Down Expand Up @@ -121,12 +121,12 @@ lint-js:

.PHONY: lint-py
lint-py:
pipenv run black --check --diff .
pipenv run flake8 .
pipenv run black --check --diff ./rsconnect_jupyter
pipenv run flake8 ./rsconnect_jupyter

.PHONY: fmt
fmt:
pipenv run black .
pipenv run black ./rsconnect_jupyter

## Specify that Docker runs with the calling user's uid/gid to avoid file
## permission issues on Linux dev hosts.
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.5.0 and higher
- Python 3.7.0 and higher
- Jupyter Notebook 5.x
- [pip](https://pypi.org/project/pip/)
- [wheel](https://pypi.org/project/wheel/)
Expand Down

0 comments on commit a775dbf

Please sign in to comment.