Skip to content
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
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
strategy:
matrix:
rust: [stable]
python-version: [3.5, 3.6, 3.7, 3.8]
python-version: [3.5, 3.6, 3.7, 3.8, 3.9]
platform: [
{ os: "macOS-latest", python-architecture: "x64", rust-target: "x86_64-apple-darwin" },
{ os: "ubuntu-latest", python-architecture: "x64", rust-target: "x86_64-unknown-linux-gnu" },
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,15 +44,15 @@ jobs:
toolchain: stable
- name: Install cibuildwheel
run: |
python -m pip install cibuildwheel==1.6.0 twine
python -m pip install cibuildwheel==1.6.3 twine
- name: Build wheels
run: |
python -m cibuildwheel --output-dir wheelhouse
env:
CIBW_BEFORE_ALL_LINUX: "yum install -y wget && {package}/tools/install_rust.sh"
CIBW_ENVIRONMENT_LINUX: 'PATH="$PATH:$HOME/.cargo/bin"'
CIBW_ENVIRONMENT_MACOS: MACOSX_DEPLOYMENT_TARGET=10.9
CIBW_SKIP: cp27-* cp34-* cp39-* pp* *win32
CIBW_SKIP: cp27-* cp34-* pp* *win32
CIBW_BEFORE_BUILD: pip install -U setuptools-rust
CIBW_TEST_COMMAND: python -m unittest discover {project}/tests
- uses: actions/upload-artifact@v2
Expand Down Expand Up @@ -82,7 +82,7 @@ jobs:
run: rustup default stable-i686-pc-windows-msvc
- name: Install cibuildwheel
run: |
python -m pip install cibuildwheel==1.6.0 twine
python -m pip install cibuildwheel==1.6.3 twine
- name: Build wheels
run: |
python -m cibuildwheel --output-dir wheelhouse
Expand Down
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
- CIBW_TEST_COMMAND="python -m unittest discover {project}/tests"
if: tag IS present
script:
- pip install -U twine cibuildwheel==1.5.2
- pip install -U twine cibuildwheel==1.6.3
- cibuildwheel --output-dir wheelhouse
- twine upload wheelhouse/*
- stage: deploy
Expand All @@ -78,7 +78,7 @@ jobs:
- CIBW_TEST_COMMAND="python -m unittest discover {project}/tests"
if: tag IS present
script:
- pip install -U twine cibuildwheel==1.5.2
- pip install -U twine cibuildwheel==1.6.3
- cibuildwheel --output-dir wheelhouse
- twine upload wheelhouse/*
- stage: deploy
Expand All @@ -98,6 +98,6 @@ jobs:
- CIBW_TEST_COMMAND="python -m unittest discover {project}/tests"
if: tag IS present
script:
- sudo pip install -U twine cibuildwheel==1.5.2
- sudo pip install -U twine cibuildwheel==1.6.3
- cibuildwheel --output-dir wheelhouse
- twine upload wheelhouse/*
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ def readme():
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
Expand Down