8000 Upgrade to python 3.11 and yrs 0.12.1 by davidbrochart · Pull Request #88 · y-crdt/ypy · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content
This repository was archived by the owner on Apr 22, 2025. It is now read-only.

Upgrade to python 3.11 and yrs 0.12.1 #88

Merged
merged 2 commits into from
Nov 7, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: ["3.7", "3.10"] # Empty string will trigger a build with the latest python version
python-version: ["3.7", "3.11"] # Empty string will trigger a build with the latest python version
defaults:
run:
shell: bash -l {0}
Expand All @@ -26,7 +26,8 @@ jobs:
- name: Install Python
uses: conda-incubator/setup-miniconda@v2
with:
auto-update-conda: true
mamba-version: "*"
channels: conda-forge
python-version: ${{ matrix.python-version }}
- name: Install Rust
uses: actions-rs/toolchain@v1
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
runs-on: macos-latest
strategy:
matrix:
python-version: ["3.7", "3.10"]
python-version: ["3.7", "3.11"]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
Expand Down Expand Up @@ -49,7 +49,7 @@ jobs:
strategy:
matrix:
target: [x64, x86]
python-version: ["3.7", "3.10"]
python-version: ["3.7", "3.11"]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
Expand Down Expand Up @@ -78,7 +78,7 @@ jobs:
strategy:
matrix:
target: [x86_64, i686]
python-version: ["3.7", "3.10"]
python-version: ["3.7", "3.11"]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ name = "y_py"
crate-type = ["cdylib"]

[dependencies]
lib0 = "0.11.1"
yrs = "0.11.1"
lib0 = "0.12.1"
yrs = "0.12.1"

[dependencies.pyo3]
version = "0.16.5"
Expand Down
0