Skip to content

Commit

Permalink
build: support python 3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
jtpavlock committed Nov 3, 2022
1 parent b705815 commit de6ebd2
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ jobs:
with:
fetch-depth: 0

- name: Set up Python 3.10
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: "3.10"
python-version: "3.x"

- name: Install dependencies
run: |
Expand All @@ -36,7 +36,7 @@ jobs:
runs-on: ${{ matrix.platform }}
strategy:
matrix:
python-version: ["3.9", "3.10"]
python-version: ["3.9", "3.10", "3.11"]
platform: [ubuntu-latest, windows-latest, macos-latest]

steps:
Expand All @@ -62,10 +62,10 @@ jobs:
steps:
- uses: actions/checkout@v2

- name: Set up Python 3.10
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: "3.10"
python-version: "3.x"

- name: Install dependencies
run: |
Expand All @@ -82,10 +82,10 @@ jobs:
steps:
- uses: actions/checkout@v2

- name: Set up Python 3.10
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: "3.10"
python-version: "3.x"

- name: Install dependencies
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/network_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ jobs:
with:
fetch-depth: 0

- name: Set up Python 3.10
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: "3.10"
python-version: "3.x"

- name: Install dependencies
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/prep_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ jobs:
with:
fetch-depth: 0

- name: Set up Python 3.10
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: "3.10"
python-version: "3.x"

- name: Install dependencies
run: |
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ license = "MIT"
moe = 'moe.cli:main'

[tool.poetry.dependencies]
python = ">=3.9, <3.11"
python = ">=3.9, <3.12"
alembic = "^1.4.2"
dynaconf = "^3.1.4"
moe_mediafile = "^0.10.1"
Expand Down

0 comments on commit de6ebd2

Please sign in to comment.