Skip to content

Commit

Permalink
COMPAT: 0.23.0 release (#25)
Browse files Browse the repository at this point in the history
* COMPAT: 0.23.0 release

* Fixed label
  • Loading branch information
TomAugspurger committed May 16, 2018
1 parent 904249a commit 03d4d2f
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 9 deletions.
5 changes: 2 additions & 3 deletions .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,6 @@ install:

# add the pandas channel *before* defaults to have defaults take priority
- cmd: conda config --add channels conda-forge
- cmd: conda config --add channels pandas
- cmd: conda config --remove channels defaults
- cmd: conda config --add channels defaults

Expand All @@ -76,14 +75,14 @@ install:
# - cmd: call setup_x64
- cmd: conda create -q -n test-environment python=%PYTHON_VERSION% coverage cython flake8 hypothesis numpy pytest pytest-cov python-dateutil pytz six
- cmd: activate test-environment
- cmd: conda install -c conda-forge/label/rc pandas>=0.23.0rc2
- cmd: conda install -c conda-forge pandas>=0.23.0
- cmd: conda list -n test-environment
- cmd: pip install --no-deps -e .

test_script:
# tests
- cmd: pytest
- cmd: conda build -c defaults -c conda-forge/label/rc conda-recipes/cyberpandas --python=${PYTHON}
- cmd: conda build -c defaults -c conda-forge conda-recipes/cyberpandas --python=${PYTHON}

on_success:
- cmd: if "%APPVEYOR_PULL_REQUEST_NUMBER%"=="" anaconda -t %UPLOAD_KEY% upload -u intake --force %CONDA_ROOT%\\conda-bld\\*\\*.tar.bz2
2 changes: 1 addition & 1 deletion ci/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
set -e
echo "Building cyberpandas"

conda build -c defaults -c conda-forge/label/rc conda-recipes/cyberpandas --python=${PYTHON}
conda build -c defaults -c conda-forge conda-recipes/cyberpandas --python=${PYTHON}
4 changes: 2 additions & 2 deletions ci/environment.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
name: cyberpandas-docs
channels:
- defaults
- conda-forge/label/rc
- conda-forge
dependencies:
- coverage
- flake8
- ipython
- matplotlib
- numpy
- numpydoc
- pandas >=0.23.0rc2
- pandas >=0.23.0
- pytest
- pytest-cov
- python=3.6
Expand Down
2 changes: 1 addition & 1 deletion ci/install-travis.sh
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ conda install \
pytz \
six

conda install -c conda-forge/label/rc pandas>=0.23.0rc2
conda install -c conda-forge pandas>=0.23.0

if [ "${PYTHON}" == "2.7" ]; then
conda install -q ipaddress
Expand Down
2 changes: 1 addition & 1 deletion conda-recipes/cyberpandas/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ requirements:

run:
- ipaddress # [py27]
- pandas >=0.23.0rc2
- pandas >=0.23.0
- python
- setuptools >=3.3

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,6 @@
],
packages=find_packages(),
install_requires=[
'pandas>=0.23.0rc2',
'pandas>=0.23.0',
]
)

0 comments on commit 03d4d2f

Please sign in to comment.