Skip to content

Commit

Permalink
update deps, remove support python version <=3.10
Browse files Browse the repository at this point in the history
  • Loading branch information
maguowei committed Apr 14, 2024
1 parent 3e1e011 commit f1ae04d
Show file tree
Hide file tree
Showing 3 changed files with 674 additions and 599 deletions.
42 changes: 21 additions & 21 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,28 +8,28 @@ jobs:
strategy:
max-parallel: 4
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
python-version: ["3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -U pycodestyle poetry
poetry install
- name: pycodestyle
run: pycodestyle --max-line-length=200 starred
- name: Build test
run: poetry build
- name: test
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
poetry run starred --username maguowei --token ${GITHUB_TOKEN} --sort
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -U pycodestyle poetry
poetry install
- name: pycodestyle
run: pycodestyle --max-line-length=200 starred
- name: Build test
run: poetry build
- name: test
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
poetry run starred --username maguowei --token ${GITHUB_TOKEN} --sort
# - name: Lint with flake8
# run: |
# pip install flake8
Expand Down
Loading

0 comments on commit f1ae04d

Please sign in to comment.