Skip to content

Commit 7e25170

Browse files
authored
Merge pull request #5 from ynab/fix-urllib3-126
Fix support for urllib3 < 2.1.0
2 parents e8d8331 + e4be4a3 commit 7e25170

File tree

10 files changed

+1098
-60
lines changed

10 files changed

+1098
-60
lines changed

.github/workflows/build-test.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,8 @@ jobs:
1515
python-version: ${{ matrix.python-version }}
1616
- name: Install dependencies
1717
run: |
18-
python -m pip install --upgrade pip
19-
pip install -r requirements.txt
20-
pip install -r test-requirements.txt
18+
pip install poetry
19+
poetry install
2120
- name: Test with pytest
2221
run: |
23-
pytest --cov=ynab
22+
poetry run pytest --cov=ynab

poetry.lock

Lines changed: 68 additions & 35 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ python-dateutil = ">= 2.8.2"
1717
pydantic = ">= 2"
1818
typing-extensions = ">= 4.7.1"
1919

20-
[tool.poetry.dev-dependencies]
20+
[tool.poetry.group.dev.dependencies]
2121
pytest = ">= 7.2.1"
2222
pytest-cov = ">= 2.8.1"
2323
tox = ">= 3.9.0"

requirements.txt

Lines changed: 0 additions & 4 deletions
This file was deleted.

0 commit comments

Comments
 (0)