Skip to content

Commit

Permalink
Fix typing and docs website (#42)
Browse files Browse the repository at this point in the history
* Fix typing and docs website

* Update versions
  • Loading branch information
kylebarron authored Oct 24, 2024
1 parent 1d403ea commit 70a0de9
Show file tree
Hide file tree
Showing 6 changed files with 28 additions and 459 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
strategy:
fail-fast: true
matrix:
python-version: ["3.9", "3.12"]
python-version: ["3.11", "3.12"]
steps:
- uses: actions/checkout@v4

Expand Down
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# object-store-py

[![PyPI][pypi_badge]][pypi_link]
<!-- [![Conda Version][conda_version_badge]][conda_version] -->

[pypi_badge]: https://badge.fury.io/py/object-store-py.svg
[pypi_link]: https://pypi.org/project/object-store-py/
<!-- [conda_version_badge]: https://img.shields.io/conda/vn/conda-forge/object-store-py.svg
[conda_version]: https://anaconda.org/conda-forge/object-store-py -->

A Python interface and [pyo3](https://github.com/PyO3/pyo3) integration to the Rust [`object_store`](https://docs.rs/object_store) crate, providing a uniform API for interacting with object storage services and local files.

Run the same code in multiple clouds via a simple runtime configuration change.
Expand Down
4 changes: 2 additions & 2 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ theme:

# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
primary: amber
primary: indigo
accent: indigo
toggle:
icon: material/brightness-7
Expand All @@ -64,7 +64,7 @@ theme:
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: amber
primary: indigo
accent: indigo
toggle:
icon: material/brightness-4
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "test-env"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.9"
requires-python = ">=3.11"
dependencies = []

[tool.uv]
Expand Down
Loading

0 comments on commit 70a0de9

Please sign in to comment.