Skip to content

Commit

Permalink
2024年6月7日 pypi 01
Browse files Browse the repository at this point in the history
  • Loading branch information
ss1917 committed Jun 7, 2024
1 parent f5e921c commit 6dabd0b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,6 @@ on:
push:
branches:
- main
# schedule:
# - cron: '0 4 */1 * *'

jobs:
build:
name: Publish Python 🐍 distributions 📦 to PyPI
Expand Down Expand Up @@ -34,5 +31,5 @@ jobs:
uses: pypa/[email protected]
with:
user: __token__
password: ${{ secrets.pypi_password }}
password: ${{ secrets.PYPI_PASSWORD2 }}
# repository_url: https://pypi.org/legacy/
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
import sys
from distutils.core import setup

VERSION = '0.1.74'
VERSION = '1.0.0'

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


setup(
name='opssdk',
name='codosdk',
version=VERSION,
description="CODO项目的Python SDK",
packages=['opssdk', 'opssdk.utils', 'websdk2', 'websdk2.apis', 'websdk2.cloud', 'websdk2.utils'],
Expand Down

0 comments on commit 6dabd0b

Please sign in to comment.