Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
55 changes: 51 additions & 4 deletions poetry.lock

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

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ dependencies = [
"pooch (>=1.8.2,<2.0.0)",

"docutils (>=0.19,<1.0)",
"httpx (>=0.28.1,<1.0)",
"httpxyz (>=0.31.2,<1.0)",
"beautifulsoup4 (>=4.13.3,<5.0.0)",
"lxml (>=6.0.2,<7.0.0)",
"pyyaml (>=6.0.3,<7.0.0)",
Expand Down
2 changes: 1 addition & 1 deletion scopesim/commands/user_commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from typing import Any

import yaml
import httpx
import httpxyz as httpx
from packaging.version import parse

from astar_utils import NestedMapping, RecursiveNestedMapping, NestedChainMap
Expand Down
2 changes: 1 addition & 1 deletion scopesim/server/database.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from collections.abc import Iterator, Iterable, Mapping

import yaml
import httpx
import httpxyz as httpx
from more_itertools import first, last, groupby_transform

from .github_utils import download_github_folder
Expand Down
2 changes: 1 addition & 1 deletion scopesim/server/download_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from zipfile import ZipFile
from pathlib import Path

import httpx
import httpxyz as httpx
import bs4
import pooch

Expand Down
2 changes: 1 addition & 1 deletion scopesim/tests/tests_server/test_database.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

@pytest.fixture(scope="class")
def mock_client():
# TODO: investigate proper mocking via httpx
# TODO: investigate proper mocking via httpxyz
with db.create_client(db.get_base_url()) as client:
yield client

Expand Down
Loading