-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #312 from bashtage/maint-black-version
MAINT: Switch version manager and upgrade black
- Loading branch information
Showing
31 changed files
with
268 additions
and
2,677 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
freebsd_instance: | ||
image_family: freebsd-12-2 | ||
image_family: freebsd-12-3 | ||
|
||
task: | ||
install_script: . ./ci/cirrus-install.sh | ||
script: pytest-3.8 randomgen | ||
script: mkdir test_dir && cd test_dir && echo $PWD && python3.9 -c "import randomgen; randomgen.test()" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,25 @@ | ||
--- | ||
kind: pipeline | ||
type: docker | ||
name: test-on-arm64 | ||
|
||
platform: | ||
os: linux | ||
arch: arm64 | ||
|
||
|
||
steps: | ||
- name: test | ||
image: ubuntu:latest | ||
image: ubuntu:focal | ||
commands: | ||
- uname -a | ||
- ln -s /usr/bin/gpgv /usr/bin/gnupg2 | ||
# - apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 871920D1991BC93C | ||
- apt-get update | ||
- export DEBIAN_FRONTEND=noninteractive | ||
- apt-get install libatlas-base-dev build-essential cython3 python3-numpy python3 python3-dev python3-pip libxml2-dev libxslt-dev python3-lxml -y | ||
- apt-get install libatlas-base-dev build-essential cython3 python3-numpy python3 python3-dev python3-pip libxml2-dev libxslt-dev python3-lxml git -y | ||
- gcc tools/long_double_sizes.c -o long_double_sizes && ./long_double_sizes | ||
- pip3 install -r requirements.txt --upgrade | ||
- pip3 install -r requirements-dev.txt | ||
- pip3 install -e . --no-build-isolation | ||
- python3 -m pip install -r requirements.txt --upgrade | ||
- python3 -m pip install -r requirements-dev.txt | ||
- python3 -m pip install -e . --no-build-isolation | ||
- pytest -r a randomgen |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,10 @@ | ||
#!/usr/bin/env bash | ||
|
||
pkg install -y python38 py38-pip py38-numpy py38-cython py38-pytest | ||
python3.8 setup.py develop | ||
|
||
pkg install -y python39 py39-numpy py39-cython wget git | ||
python3.9 -m ensurepip --upgrade | ||
python3.9 -m pip install wheel setuptools_scm[toml] pytest | ||
python3.9 -m pip list | ||
git fetch --tags | ||
python3.9 -m pip install . --no-build-isolation | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.