Skip to content

Commit

Permalink
Feature v2.5.0 初始化2.5.0版本
Browse files Browse the repository at this point in the history
  • Loading branch information
panyi committed Aug 2, 2024
1 parent a0e15b3 commit 272b966
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 23 deletions.
46 changes: 24 additions & 22 deletions .github/workflows/publish-to-fofa-hack-pypi.yml
Original file line number Diff line number Diff line change
@@ -1,28 +1,30 @@
name: Publish Python 🐍 distributions 📦 to PyPI
name: Publish

on: push

jobs:
build-n-publish:
name: Build and publish Python 🐍 distributions 📦 to PyPI
runs-on: ubuntu-18.04

steps:
- uses: actions/checkout@v2

- name: Set up Python 3.6
uses: actions/setup-python@v1
with:
python-version: 3.6
jobs:
build:

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools wheel twine
runs-on: ubuntu-latest

- name: Publish distribution 📦 to PyPI
if: startsWith(github.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@master
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}
steps:
- uses: actions/checkout@v2
- name: Set up Python 3
uses: actions/setup-python@v1
with:
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Build wheels and source tarball
run: |
python setup.py sdist build
- name: Publish open-autonomy Framework to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}
skip_existing: true
packages_dir: dist/
2 changes: 1 addition & 1 deletion tookit/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# @File : config.py
# @Github: https://github.com/Cl0udG0d

VERSION_NUM = "2.4.18"
VERSION_NUM = "2.5.0"
ROOT_PATH = ""
AUTHORIZATION = ""
AUTHORIZATION_LIST = [
Expand Down

0 comments on commit 272b966

Please sign in to comment.