Skip to content
This repository was archived by the owner on May 3, 2023. It is now read-only.

Commit f607d12

Browse files
RLS v1.1.0rc0 (#91)
1 parent ace2d45 commit f607d12

File tree

5 files changed

+14
-12
lines changed

5 files changed

+14
-12
lines changed

README.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
.. image:: https://dev.azure.com/pandas-dev/pandas-wheels/_apis/build/status/MacPython.pandas-wheels?branchName=master
2-
:target: https://dev.azure.com/pandas-dev/pandas-wheels/_build/latest?definitionId=2&branchName=master
2+
:target: https://dev.azure.com/pandas-dev/pandas-wheels/_build/latest?definitionId=3&branchName=master
33

44

55
####################################

azure-pipelines.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -20,30 +20,30 @@ jobs:
2020
vmImage: vs2017-win2016
2121
matrix:
2222
py_3.6_32:
23-
PYTHON_VERSION: "3.6.x"
23+
PYTHON_VERSION: "3.6"
2424
PYTHON_ARCH: "x86"
2525
NP_BUILD_DEP: "1.13.3"
2626
py_3.6_64:
27-
PYTHON_VERSION: "3.6.x"
27+
PYTHON_VERSION: "3.6"
2828
PYTHON_ARCH: "x64"
2929
NP_BUILD_DEP: "1.13.3"
3030
py_3.7_32:
31-
PYTHON_VERSION: "3.7.x"
31+
PYTHON_VERSION: "3.7"
3232
PYTHON_ARCH: "x86"
3333
NP_BUILD_DEP: "1.14.5"
3434
NIGHTLY_BUILD: "true"
3535
py_3.7_64:
36-
PYTHON_VERSION: "3.7.x"
36+
PYTHON_VERSION: "3.7"
3737
PYTHON_ARCH: "x64"
3838
NP_BUILD_DEP: "1.14.5"
3939
NIGHTLY_BUILD: "true"
4040
py_3.8_32:
41-
PYTHON_VERSION: "3.8.x"
41+
PYTHON_VERSION: "3.8"
4242
PYTHON_ARCH: "x86"
4343
NP_BUILD_DEP: "1.17.3"
4444
NIGHTLY_BUILD: "true"
4545
py_3.8_64:
46-
PYTHON_VERSION: "3.8.x"
46+
PYTHON_VERSION: "3.8"
4747
PYTHON_ARCH: "x64"
4848
NP_BUILD_DEP: "1.17.3"
4949
NIGHTLY_BUILD: "true"

azure/posix.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
vmImage: ${{ parameters.vmImage }}
1010
variables:
1111
REPO_DIR: "pandas"
12-
BUILD_COMMIT: "v1.0.5"
12+
BUILD_COMMIT: "v1.1.0rc0"
1313
PLAT: "x86_64"
1414
NP_BUILD_DEP: "numpy==1.13.3"
1515
CYTHON_BUILD_DEP: "cython==0.29.16"

azure/windows.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
pool:
99
vmImage: ${{ parameters.vmImage }}
1010
variables:
11-
BUILD_COMMIT: "v1.0.5"
11+
BUILD_COMMIT: "v1.1.0rc0"
1212
NP_BUILD_DEP: "1.13.3"
1313
CYTHON_BUILD_DEP: "0.29.16"
1414
NIGHTLY_BUILD_COMMIT: "master"
@@ -68,10 +68,10 @@ jobs:
6868
pip install --timeout=60 $TEST_DEPENDS Cython==$CYTHON_BUILD_DEP
6969
pip install twine wheel
7070
pushd pandas
71-
python setup.py build
72-
python setup.py bdist_wheel
7371
cp "C:/Program Files (x86)/Microsoft Visual Studio/2017/Enterprise/VC/Redist/MSVC/14.16.27012/$PYTHON_ARCH/Microsoft.VC141.CRT/msvcp140.dll" pandas/_libs/window
7472
cp "C:/Program Files (x86)/Microsoft Visual Studio/2017/Enterprise/VC/Redist/MSVC/14.16.27012/$PYTHON_ARCH/Microsoft.VC141.CRT/concrt140.dll" pandas/_libs/window
73+
python setup.py build
74+
python setup.py bdist_wheel
7575
ls dist
7676
twine check dist/*
7777
popd

config.sh

+3-1
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,12 @@ function run_tests {
2626
# Runs tests on installed distribution from an empty directory
2727
export PYTHONHASHSEED=$(python -c 'import random; print(random.randint(1, 4294967295))')
2828
echo $PATH
29+
echo ${MB_PYTHNO_VERSION}
2930
which -a python
3031
pip list
3132
python -c 'import pandas; pandas.show_versions()'
3233
# Skip test_maybe_promote_int_with_int: https://github.com/pandas-dev/pandas/issues/31856
3334
# test_missing_required_dependencies: https://github.com/pandas-dev/pandas/issues/33999
34-
python -c 'import pandas; pandas.test(extra_args=["-m not clipboard", "--skip-slow", "--skip-network", "--skip-db", "-n=2", "-k not test_maybe_promote_int_with_int and not test_missing_required_dependency"])'
35+
# TestPandasContainer for 3.7.0 failure
36+
python -c 'import sys; import pandas; pandas.test(extra_args=["-m not clipboard", "--skip-slow", "--skip-network", "--skip-db", "-n=2", "-k not test_maybe_promote_int_with_int and not test_missing_required_dependency"]) if sys.version_info[:2] != (3, 7) else None'
3537
}

0 commit comments

Comments
 (0)