Merge pull request #3546 from davidhewitt/older-hashbrown

ci: use older hashbrown and indexmap for MSRV
This commit is contained in:
David Hewitt 2023-10-25 08:01:35 +00:00 committed by GitHub
commit de6162f533
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 16 additions and 4 deletions

View File

@ -22,7 +22,7 @@ on:
jobs: jobs:
build: build:
continue-on-error: ${{ endsWith(inputs.python-version, '-dev') || contains(fromJSON('["3.7", "pypy3.7"]'), inputs.python-version) || inputs.rust == 'beta' }} continue-on-error: ${{ endsWith(inputs.python-version, '-dev') || contains(fromJSON('["3.7", "pypy3.7"]'), inputs.python-version) || inputs.rust == 'beta' || inputs.rust == 'nightly' }}
runs-on: ${{ inputs.os }} runs-on: ${{ inputs.os }}
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4

View File

@ -165,8 +165,20 @@ jobs:
os: "windows-latest", os: "windows-latest",
python-architecture: "x86", python-architecture: "x86",
rust-target: "i686-pc-windows-msvc", rust-target: "i686-pc-windows-msvc",
} },
] ]
include:
# Test nightly Rust on PRs so that PR authors have a chance to fix nightly
# failures, as nightly does not block merge.
- rust: nightly
python-version: "3.12"
platform:
{
os: "ubuntu-latest",
python-architecture: "x64",
rust-target: "x86_64-unknown-linux-gnu",
}
extra-features: "nightly multiple-pymethods"
build-full: build-full:
if: ${{ contains(github.event.pull_request.labels.*.name, 'CI-build-full') || (github.event_name != 'pull_request' && github.ref != 'refs/heads/main') }} if: ${{ contains(github.event.pull_request.labels.*.name, 'CI-build-full') || (github.event_name != 'pull_request' && github.ref != 'refs/heads/main') }}
name: python${{ matrix.python-version }}-${{ matrix.platform.python-architecture }} ${{ matrix.platform.os }} rust-${{ matrix.rust }} name: python${{ matrix.python-version }}-${{ matrix.platform.python-architecture }} ${{ matrix.platform.os }} rust-${{ matrix.rust }}

View File

@ -498,8 +498,8 @@ def set_minimal_package_versions(session: nox.Session):
min_pkg_versions = { min_pkg_versions = {
"rust_decimal": "1.26.1", "rust_decimal": "1.26.1",
"csv": "1.1.6", "csv": "1.1.6",
"indexmap": "1.9.3", "indexmap": "1.6.2",
"hashbrown": "0.12.3", "hashbrown": "0.9.1",
"log": "0.4.17", "log": "0.4.17",
"once_cell": "1.17.2", "once_cell": "1.17.2",
"rayon": "1.6.1", "rayon": "1.6.1",