Skip to content

Commit

Permalink
Merge pull request #320 from rstudio/bcwu-remove-python2
Browse files Browse the repository at this point in the history
deprecate Python2 support
  • Loading branch information
mmarchetti authored Mar 2, 2022
2 parents 470f4ed + 19b0976 commit 37fd002
Show file tree
Hide file tree
Showing 6 changed files with 567 additions and 344 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
python-version: ['2.7', '3.5', '3.6', '3.7', '3.8', '3.9']
python-version: ['3.5', '3.6', '3.7', '3.8', '3.9', '3.10']
include:
- os: macos-latest
python-version: '3.9'
Expand All @@ -30,7 +30,8 @@ jobs:
- run: make prereqs
- run: make version
- run: make install
- run: make lint
- if: matrix.python-version >= '3.6'
run: make lint
- run: make test
selenium:
runs-on: ubuntu-latest
Expand Down
4 changes: 2 additions & 2 deletions Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ url = "https://pypi.org/simple"
verify_ssl = true

[dev-packages]
black = "*"
black = {version = "22.1.0", markers = "python_version >= '3.6'"}
coverage = "*"
flake8 = "*"
importlib-metadata = "*"
Expand All @@ -22,7 +22,7 @@ traitlets = ">=5.1.1"
nbconvert = ">=5.0"
nbformat = "*"
notebook = ">=6.1.5"
rsconnect-python = ">=1.5.0"
rsconnect-python = ">=1.7.1"
six = "*"
# Dependabot fixes
py = ">=1.10.0"
Expand Down
Loading

0 comments on commit 37fd002

Please sign in to comment.