Compare commits
5 Commits
python-311
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
b89900ef36 | ||
|
|
13387cbd38 | ||
|
|
5430f897de | ||
|
|
dec9378d00 | ||
|
|
c8f8a0eecb |
10
.github/workflows/CI.yml
vendored
10
.github/workflows/CI.yml
vendored
@@ -12,7 +12,7 @@ env:
|
|||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
rust-build-and-test:
|
rust-build-and-test:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-20.04
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
@@ -35,10 +35,10 @@ jobs:
|
|||||||
|
|
||||||
python-test:
|
python-test:
|
||||||
needs: rust-build-and-test
|
needs: rust-build-and-test
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-20.04
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10']
|
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10', '3.11', '3.12']
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
@@ -72,8 +72,8 @@ jobs:
|
|||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
os: [ubuntu-latest, macos-latest, windows-latest]
|
os: [ubuntu-20.04, macos-latest, windows-latest]
|
||||||
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10']
|
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10', '3.11', '3.12']
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "qvd"
|
name = "qvd"
|
||||||
version = "0.0.14"
|
version = "0.0.15"
|
||||||
authors = ["Sam Bentley <samtbentley@gmail.com>"]
|
authors = ["Sam Bentley <samtbentley@gmail.com>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
@@ -24,5 +24,3 @@ bitvec = "0.19.4"
|
|||||||
version = "0.12.3"
|
version = "0.12.3"
|
||||||
features = ["extension-module"]
|
features = ["extension-module"]
|
||||||
|
|
||||||
[package.metadata.maturin]
|
|
||||||
requires-dist = ["pandas>=1.1.4"]
|
|
||||||
|
|||||||
3
pyproject.toml
Normal file
3
pyproject.toml
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
[build-system]
|
||||||
|
requires = ["maturin>=1.0,<2.0", "pandas>=1.1.4"]
|
||||||
|
build-backend = "maturin"
|
||||||
Reference in New Issue
Block a user