Skip to content

Commit 18e23be

Browse files
committed
update readme and tweaks
1 parent 99855d7 commit 18e23be

File tree

4 files changed

+10
-7
lines changed

4 files changed

+10
-7
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ jobs:
103103
python-version: '3.10'
104104

105105
- name: install
106-
run: pip install -U build twine
106+
run: pip install -U build
107107

108108
- name: check GITHUB_REF matches package version
109109
uses: samuelcolvin/[email protected]
@@ -113,7 +113,5 @@ jobs:
113113
- name: build
114114
run: python -m build
115115

116-
- run: twine check dist/*
117-
118116
- name: Upload package to PyPI
119117
uses: pypa/gh-action-pypi-publish@release/v1

README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,10 @@
44
[![Coverage](https://codecov.io/gh/pydantic/pydantic-settings/branch/main/graph/badge.svg)](https://codecov.io/gh/pydantic/pydantic-settings)
55
[![license](https://img.shields.io/github/license/pydantic/pydantic-settings.svg)](https://github.com/pydantic/pydantic-settings/blob/main/LICENSE)
66

7-
Settings management using Pydantic. **Currently a work in progress.**
7+
Settings management using Pydantic, this is the new official home of Pydantic's `BaseSettings`.
8+
9+
**Currently a work in progress.**
10+
11+
This package was kindly donated to the [Pydantic organisation](https://github.com/pydantic/pydantic) by Daniel Daniels, see [pydantic/pydantic#4492](https://github.com/pydantic/pydantic/pull/4492) for discussion.
12+
13+
For the old "Hipster-orgazmic tool to mange application settings" package, see [version 0.2.5](https://pypi.org/project/pydantic-settings/0.2.5/).

pydantic_settings/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
VERSION = '2.0a1'
1+
VERSION = '2.0a2'

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ authors = [
1313
{name = 'Eric Jolibois', email = '[email protected]'},
1414
{name = 'Hasan Ramezani', email = '[email protected]'},
1515
]
16-
license = {file = 'LICENSE'}
16+
license = 'MIT'
1717
readme = 'README.md'
1818
classifiers = [
1919
'Development Status :: 5 - Production/Stable',
@@ -79,7 +79,6 @@ exclude_lines = [
7979
'@overload',
8080
]
8181

82-
8382
[tool.coverage.paths]
8483
source = [
8584
'pydantic_settings/',

0 commit comments

Comments
 (0)