-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #18 from lsst-sqre/tickets/DM-37493
DM-37493: Add support for httpx
- Loading branch information
Showing
20 changed files
with
180 additions
and
271 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -40,6 +40,7 @@ jobs: | |
- "3.8" | ||
- "3.9" | ||
- "3.10" | ||
- "3.11" | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,6 +18,7 @@ jobs: | |
- "3.8" | ||
- "3.9" | ||
- "3.10" | ||
- "3.11" | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
|
||
.. _aiohttp: https://aiohttp.readthedocs.io/en/stable/ | ||
.. _aiokafka: https://aiokafka.readthedocs.io/en/stable/ | ||
.. _Confluent Schema Registry: https://docs.confluent.io/current/schema-registry/docs/index.html | ||
.. _Confluent Wire Format: https://docs.confluent.io/current/schema-registry/docs/serializer-formatter.html#wire-format | ||
.. _HTTPX: https://www.python-httpx.org | ||
.. _mypy: http://www.mypy-lang.org | ||
.. _pre-commit: https://pre-commit.com | ||
.. _pytest: https://docs.pytest.org/en/latest/ | ||
.. _Schema Evolution and Compatibility: https://docs.confluent.io/current/schema-registry/avro.html | ||
.. _Strimzi: https://strimzi.io | ||
.. _tox: https://tox.readthedocs.io/en/latest/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
[project] | ||
title = "Kafkit" | ||
copyright = "2019-2023 Association of Universities for Research in Astronomy, Inc. (AURA)" | ||
|
||
[project.python] | ||
package = "kafkit" | ||
|
||
[sphinx] | ||
rst_epilog_file = "_rst_epilog.rst" | ||
nitpick_ignore = [ | ||
[ | ||
"py:obj", | ||
"aiokafka.AIOKafkaProducer.send_and_wait", | ||
], | ||
[ | ||
"py:class", | ||
"httpx.AsyncClient", | ||
], | ||
] | ||
|
||
[sphinx.intersphinx.projects] | ||
python = "https://docs.python.org/3/" | ||
aiohttp = "https://aiohttp.readthedocs.io/en/stable/" | ||
aiokafka = "https://aiokafka.readthedocs.io/en/stable/" | ||
fastavro = "https://fastavro.readthedocs.io/en/latest/" | ||
|
||
[sphinx.linkcheck] | ||
ignore = ['^https://jira.lsstcorp.org/browse/', '^http://registry:8081'] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
########## | ||
User guide | ||
########## | ||
|
||
.. toctree:: | ||
:maxdepth: 2 | ||
|
||
recordnameschemamanager-howto | ||
strimzi-ssl-howto |
File renamed without changes.
File renamed without changes.
Oops, something went wrong.