File tree Expand file tree Collapse file tree 2 files changed +19
-21
lines changed
Expand file tree Collapse file tree 2 files changed +19
-21
lines changed Original file line number Diff line number Diff line change 88 deploy :
99 runs-on : ubuntu-latest
1010 steps :
11- - uses : actions/checkout@v2
12- - name : Set up Python 3.8
13- uses : actions/setup-python@v2
14- with :
15- python-version : 3.8
16- - name : Install dependencies
17- run : |
18- python -m pip install --upgrade pip
19- pip install setuptools wheel twine
20- - name : Build and publish to PyPi
21- env :
11+ - uses : actions/checkout@v5
12+ - uses : actions/setup-python@v6
13+ with :
14+ python-version : " 3.13"
15+ - name : Install dependencies
16+ run : |
17+ python -m pip install --upgrade pip
18+ pip install setuptools wheel twine
19+ - name : Build and publish to PyPi
20+ env :
2221 TWINE_USERNAME : __token__
2322 TWINE_PASSWORD : ${{ secrets.TWINE_TOKEN }}
2423 TWINE_REPOSITORY : pypi
25- run : |
26- python setup.py sdist bdist_wheel
27- python -m twine upload dist/*
24+ run : |
25+ python setup.py sdist bdist_wheel
26+ python -m twine upload dist/*
Original file line number Diff line number Diff line change 1- name : Develop
1+ name : PR Validation
22
33on :
44 push :
5- branches : [ master ]
5+ branches : [master]
66 pull_request :
7- branches : [ master ]
7+ branches : [master]
88
99jobs :
1010 build :
1111 runs-on : ubuntu-latest
1212 steps :
13- - uses : actions/checkout@v2
14- - name : Set up Python 3.8
15- uses : actions/setup-python@v1
13+ - uses : actions/checkout@v5
14+ - uses : actions/setup-python@v6
1615 with :
17- python-version : 3.8
16+ python-version : " 3.13 "
1817 - name : Linting
1918 run : |
2019 pip install pre-commit
You can’t perform that action at this time.
0 commit comments