Skip to content

Commit

Permalink
change workflow python version to 3.8,3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
MissterHao committed Feb 3, 2023
1 parent c23989c commit 77aa848
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,17 @@ jobs:

steps:
- uses: actions/checkout@v3

- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools wheel twine
- name: Build and publish
env:
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ jobs:
python-version:
- 3.8
- 3.9
- 3.10
steps:
- uses: actions/checkout@v3

Expand Down
4 changes: 1 addition & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,6 @@ classifiers =
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.6
Programming Language :: Python :: Implementation
Topic :: Software Development :: Libraries :: Application Frameworks
Topic :: Software Development :: Libraries :: Python Modules
Expand All @@ -39,7 +37,7 @@ classifiers =
[options]
packages=find:
include_package_data = true
python_requires = >=3.6
python_requires = >=3.8
setup_requires =
setuptools >= 38.3.0
install_requires =
Expand Down

0 comments on commit 77aa848

Please sign in to comment.