Skip to content
This repository has been archived by the owner on Apr 30, 2024. It is now read-only.

Commit

Permalink
Poetry depends on cleo which doesn't support 3.10
Browse files Browse the repository at this point in the history
	modified:   .github/workflows/ci.yml
	modified:   .github/workflows/release.yml
  • Loading branch information
vicky5124 committed Sep 24, 2021
1 parent 1627bb1 commit 2c7ef8e
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 6 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [3.6, 3.7, 3.8, 3.9, 3.10-dev]
#python-version: [3.6, 3.7, 3.8, 3.9, 3.10-dev]
python-version: [3.6, 3.7, 3.8, 3.9]
os: [ubuntu-latest, macos-latest]

steps:
Expand Down Expand Up @@ -94,10 +95,12 @@ jobs:
- name: Checkout
uses: actions/checkout@v2

- name: Set up Python 3.6-3.9 and 3.10-dev
#- name: Set up Python 3.6-3.9 and 3.10-dev
- name: Set up Python 3.6-3.9
uses: actions/setup-python@v2
with:
python-version: 3.10-dev
#python-version: 3.10-dev
python-version: 3.9

- name: Install dependencies
run: |
Expand All @@ -123,5 +126,6 @@ jobs:
- name: Upload Artifacts
uses: actions/upload-artifact@master
with:
name: lavasnek-rs windows-latest for Python 3.6 to 3.9 and 3.10-dev
#name: lavasnek-rs windows-latest for Python 3.6 to 3.9 and 3.10-dev
name: lavasnek-rs windows-latest for Python 3.6 to 3.9
path: target/wheels/lavasnek_rs
6 changes: 4 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [3.6, 3.7, 3.8, 3.9, 3.10-dev]
#python-version: [3.6, 3.7, 3.8, 3.9, 3.10-dev]
python-version: [3.6, 3.7, 3.8, 3.9]
os: [ubuntu-latest, macos-latest]

steps:
Expand Down Expand Up @@ -59,7 +60,8 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [3.6, 3.7, 3.8, 3.9, 3.10-dev]
#python-version: [3.6, 3.7, 3.8, 3.9, 3.10-dev]
python-version: [3.6, 3.7, 3.8, 3.9]

steps:
- uses: actions/checkout@v2
Expand Down

0 comments on commit 2c7ef8e

Please sign in to comment.