Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Publish 1.0 of the python packages #503

Merged
merged 6 commits into from
Dec 22, 2024
Merged
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
12 changes: 9 additions & 3 deletions python/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,17 @@ Changelog for the selfie Python libraries.
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

### Added
- TODO
### Fixed

- TODO
### Changed
- TODO

## [1.0.0] - 2024-12-16

- Full feature parity with 1.0 spec (facets, caching, and binary)

## [0.1.0] - 2024-12-4
## [0.1.0] - 2024-04-04

- Initial release.
3 changes: 2 additions & 1 deletion python/example-pytest-selfie/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "example-pytest-selfie"
version = "0.1.0"
version = "1.0.0.dev0"
description = "An example project for using the pytest plugin for selfie snapshot testing."
authors = [
{ name = "Edwin Ye", email = "[email protected]" },
Expand All @@ -14,6 +14,7 @@ requires-python = ">=3.9"
dependencies = [
"flask>=3.0.3",
]
classifiers = ["Private :: Do Not Upload"]

[tool.uv.sources]
selfie-lib = { path = "../selfie-lib", editable = true }
Expand Down
1 change: 0 additions & 1 deletion python/example-pytest-selfie/tests/cache_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,6 @@ def test_gen_ai():
}
}
}""")
# raise ValueError(f"KEYS={chat.keys()} TYPE={type(chat)}")
image_url: dict = cache_selfie_json(
lambda: openai()
.images.generate(
Expand Down
6 changes: 3 additions & 3 deletions python/example-pytest-selfie/uv.lock

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

2 changes: 1 addition & 1 deletion python/pytest-selfie/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "pytest-selfie"
version = "0.1.0"
version = "1.0.1.dev0"
description = "A pytest plugin for selfie snapshot testing."
authors = [
{ name = "Edwin Ye", email = "[email protected]" },
Expand Down
4 changes: 2 additions & 2 deletions python/pytest-selfie/uv.lock

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

2 changes: 1 addition & 1 deletion python/selfie-lib/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "selfie-lib"
version = "0.1.0"
version = "1.0.1.dev0"
description = "Infrastructure for creating selfie-compatible test runner plugins."
authors = [
{ name = "Edwin Ye", email = "[email protected]" },
Expand Down
2 changes: 1 addition & 1 deletion python/selfie-lib/uv.lock

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

Loading