Skip to content

Commit e285cde

Browse files
author
Andrew J Westlake
committed
Updated versions, trying to fix CI
1 parent e4e1ab1 commit e285cde

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ jobs:
161161

162162
- if: ${{ matrix.msrv == 'MSRV' && matrix.python-version != '3.11-dev' && !startsWith(matrix.python-version, 'pypy') }}
163163
name: Test (MSRV, --no-default-features)
164-
run: cargo test --no-default-features --features tokio,async-std-runtime,unstable-streams --target ${{ matrix.platform.rust-target }}
164+
run: cargo test --no-default-features --features tokio-runtime,async-std-runtime,attributes,unstable-streams --target ${{ matrix.platform.rust-target }}
165165

166166
env:
167167
RUST_BACKTRACE: 1

Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ members = ["pyo3-asyncio-macros"]
1818

1919
[features]
2020
async-std-runtime = ["async-std"]
21-
attributes = ["pyo3-asyncio-macros", "inventory"]
21+
attributes = ["pyo3-asyncio-macros"]
2222
testing = ["clap", "inventory"]
2323
tokio-runtime = ["tokio"]
2424
unstable-streams = ["async-channel"]
@@ -114,7 +114,7 @@ async-channel = { version = "1.6", optional = true }
114114
clap = { version = "3.1.5", optional = true }
115115
futures = "0.3"
116116
inventory = { version = "0.3", optional = true }
117-
once_cell = "1.5"
117+
once_cell = "1.14"
118118
pin-project-lite = "0.2"
119119
pyo3 = "0.17"
120120
pyo3-asyncio-macros = { path = "pyo3-asyncio-macros", version = "=0.17.0", optional = true }
@@ -123,11 +123,11 @@ pyo3-asyncio-macros = { path = "pyo3-asyncio-macros", version = "=0.17.0", optio
123123
pyo3 = { version = "0.17", features = ["macros"] }
124124

125125
[dependencies.async-std]
126-
version = "1.10"
126+
version = "1.12"
127127
features = ["unstable"]
128128
optional = true
129129

130130
[dependencies.tokio]
131-
version = "1.13"
131+
version = "1.21"
132132
features = ["full"]
133133
optional = true

0 commit comments

Comments
 (0)