Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to python 3.7 #52

Closed
wants to merge 13 commits into from
9 changes: 5 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
language: python
dist: jammy
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Defaults to 16.04 (whatever dist that is) which doesn't have beyond 3.9

python:
- '2.7'
- '3.5'
- '3.6'
- '3.7'
- '3.8'
- '3.9'
- 3.10-dev
- '3.10'
- '3.11'
- '3.12-dev'
- nightly
- pypy3
install:
- travis_retry pip install --upgrade pip setuptools wheel
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Required to work around default setuptools being broken in 3.9 image

- travis_retry pip install coveralls
script:
- coverage run --source=jsonpointer tests.py
Expand Down
Loading