Skip to content

Commit 6dabd0b

Browse files
committed
2024年6月7日 pypi 01
1 parent f5e921c commit 6dabd0b

File tree

2 files changed

+3
-6
lines changed

2 files changed

+3
-6
lines changed

.github/workflows/pypi.yml

+1-4
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,6 @@ on:
44
push:
55
branches:
66
- main
7-
# schedule:
8-
# - cron: '0 4 */1 * *'
9-
107
jobs:
118
build:
129
name: Publish Python 🐍 distributions 📦 to PyPI
@@ -34,5 +31,5 @@ jobs:
3431
uses: pypa/[email protected]
3532
with:
3633
user: __token__
37-
password: ${{ secrets.pypi_password }}
34+
password: ${{ secrets.PYPI_PASSWORD2 }}
3835
# repository_url: https://pypi.org/legacy/

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
import sys
1010
from distutils.core import setup
1111

12-
VERSION = '0.1.74'
12+
VERSION = '1.0.0'
1313

1414
if sys.version_info < (2, 7) or (3, 0) <= sys.version_info < (3, 6):
1515
print('This program requires at least Python 2.7 or 3.6 to run.')
@@ -31,7 +31,7 @@ def get_install_requires():
3131

3232

3333
setup(
34-
name='opssdk',
34+
name='codosdk',
3535
version=VERSION,
3636
description="CODO项目的Python SDK",
3737
packages=['opssdk', 'opssdk.utils', 'websdk2', 'websdk2.apis', 'websdk2.cloud', 'websdk2.utils'],

0 commit comments

Comments
 (0)