Skip to content

Commit

Permalink
Fix v2.0.2 (#36)
Browse files Browse the repository at this point in the history
Use newer version of Ubuntu for Travis builds, which use OpenSSL1.1.1,
instead of older versions which are using OpenSSL1.0.2. urllib3, which
is a depedency for a bunch of other python tools, requires OpenSSL1.1.1+
in order to use the v2 version of it.
  • Loading branch information
EmilMaric authored Jul 24, 2024
1 parent 13b2469 commit 4bfdcab
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 11 deletions.
3 changes: 1 addition & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
dist: focal
language: python
python:
- '3.8'
- '3.9'
before_install:
- pip install poetry
- pip install codecov
- pip uninstall -y urllib3
- pip install urllib3==1.26.6
install:
- poetry install -v
- pip install tox-travis
Expand Down
17 changes: 9 additions & 8 deletions poetry.lock

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

1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ python = "^3.8"
click = "^7.1.2"
tabulate = "^0.8.7"
requests = "^2.23.0"
urllib3 = "1.26.6"

[tool.poetry.dev-dependencies]
pytest = "^5.2"
Expand Down

0 comments on commit 4bfdcab

Please sign in to comment.