https://github.com/planet-a-ventures/affinity-model-python
Pydantic data model for Affinity (www.affinity.co)
https://github.com/planet-a-ventures/affinity-model-python
affinity model openapi pydantic python
Last synced: 5 months ago
JSON representation
Pydantic data model for Affinity (www.affinity.co)
- Host: GitHub
- URL: https://github.com/planet-a-ventures/affinity-model-python
- Owner: planet-a-ventures
- License: mit
- Created: 2025-02-26T13:39:58.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2025-03-11T11:43:31.000Z (11 months ago)
- Last Synced: 2025-03-11T12:34:33.644Z (11 months ago)
- Topics: affinity, model, openapi, pydantic, python
- Language: Python
- Homepage:
- Size: 54.7 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# affinity-model
[](https://pypi.org/project/affinity-model/)
Pydantic data model for [Affinity](https://www.affinity.co).
## 🚀 Releasing a New Version
To release a new version of this package to PyPI:
1. **Decide on the new version number** following
[semantic versioning](https://semver.org/) (e.g., v1.2.3).
2. **Create a new git tag** with the version number:
```sh
git tag v1.2.3
git push origin v1.2.3
```
3. **(Optional)**: Create a GitHub Release for the tag to add release notes.
This will trigger the GitHub Actions workflow to build
and publish the package to PyPI automatically.
The version in the published package will match the tag
(thanks to dynamic versioning).
For more details, see the workflow and dynamic versioning setup in `pyproject.toml`.