Skip to content

Commit 3738262

Browse files
committed
fix(ci): Fix setup.py
1 parent 4e26d92 commit 3738262

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
Changelog
22
=========
33

4-
## 0.1.0 - 2025-09-22
4+
### 1.0.1 - 2025-09-22
5+
6+
* Fix setup.py's long decription
7+
8+
## 1.0.0 - 2025-09-22
59

610
* Initial Release

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
LONG_DESCRIPTION = (
2121
codecs.open(os.path.join(DIRNAME, "README.md"), encoding="utf-8").read()
2222
+ "\n"
23-
+ codecs.open(os.path.join(DIRNAME, "docs/CHANGELOG.md"), encoding="utf-8").read()
23+
+ codecs.open(os.path.join(DIRNAME, "CHANGELOG.md"), encoding="utf-8").read()
2424
)
2525
REQUIREMENTS = [
2626
"django>=4.2.0,<6.0.0",
@@ -32,7 +32,7 @@
3232

3333
setup(
3434
name="drf-simple-oauth2",
35-
version="1.0.0",
35+
version="1.0.1",
3636
description=""" Simple OAuth2 client package allowing to define OAuth2 / OpenID providers through settings. """,
3737
long_description=LONG_DESCRIPTION,
3838
long_description_content_type="text/markdown",

0 commit comments

Comments
 (0)