Skip to content

Commit

Permalink
Merge pull request #446 from EducationalTestingService/release/1.5.3
Browse files Browse the repository at this point in the history
SKLL Release 1.5.3
  • Loading branch information
desilinguist committed Dec 14, 2018
2 parents 5318f29 + b926cfc commit f08b38d
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
14 changes: 7 additions & 7 deletions README.rst
Expand Up @@ -124,17 +124,17 @@ Requirements

- Python 2.7+
- `scikit-learn <http://scikit-learn.org/stable/>`__
- `six <https://warehouse.python.org/project/six>`__
- `PrettyTable <https://warehouse.python.org/project/PrettyTable>`__
- `six <https://pypi.org/project/six/>`__
- `PrettyTable <https://pypi.org/project/PrettyTable/>`__
- `BeautifulSoup 4 <http://www.crummy.com/software/BeautifulSoup/>`__
- `Grid Map <https://warehouse.python.org/project/gridmap>`__ (only required if you plan
- `Grid Map <https://pypi.org/project/gridmap/>`__ (only required if you plan
to run things in parallel on a DRMAA-compatible cluster)
- `joblib <https://warehouse.python.org/project/joblib>`__
- `joblib <https://pypi.org/project/joblib/>`__
- `ruamel.yaml <http://yaml.readthedocs.io/en/latest/overview.html>`__
- `configparser <https://warehouse.python.org/project/configparser>`__ (only required for
- `configparser <https://pypi.org/project/configparser/>`__ (only required for
Python 2.7)
- `logutils <https://warehouse.python.org/project/logutils>`__ (only required for Python 2.7)
- `mock <https://warehouse.python.org/project/mock>`__ (only required for Python 2.7)
- `logutils <https://pypi.org/project/logutils/>`__ (only required for Python 2.7)
- `mock <https://pypi.org/project/mock/>`__ (only required for Python 2.7)

The following packages can be optionally installed for additional features
but are not required:
Expand Down
2 changes: 1 addition & 1 deletion conda-recipe/README.md
@@ -1,7 +1,7 @@
How to create and test conda package.

1. To create the SKLL conda package run:
`conda build -c defaults -c conda-forge --python=3.6 --numpy=1.13 skll`
`conda build -c defaults -c conda-forge --python=3.6 --numpy=1.14 skll`
2. Upload the package to anaconda.org using `anaconda upload <path>`.
3. Test the package:
`conda create -n foobar -c defaults -c conda-forge -c desilinguist python=3.6 skll=1.5`
2 changes: 1 addition & 1 deletion conda-recipe/skll/meta.yaml
@@ -1,6 +1,6 @@
package:
name: skll
version: 1.5.2
version: 1.5.3

source:
path: ../../../skll
Expand Down
6 changes: 3 additions & 3 deletions doc/internal/release.rst
Expand Up @@ -17,15 +17,15 @@ This document is only meant for the project administrators, not users and develo

e. update the README.

3. Build the new conda package locally on your mac using the following command::
3. Build the new conda package locally on your mac using the following command (*Note*: you may have to replace the contents of the ``requirements()`` function in ``setup.py`` with a ``pass`` statement to get ``conda build`` to work)::

conda build -c defaults -c conda-forge --python=3.6 skll
conda build -c defaults -c conda-forge --python=3.6 --numpy=1.14 skll

4. Convert the package for both linux and windows::

conda convert -p win-64 -p linux-64 <mac package tarball>

5. Upload all packages to anaconda.org using ``anaconda upload``.
5. Upload each of the packages to anaconda.org using ``anaconda upload <package tarball>``.

6. Upload source package to PyPI using ``python setup.py sdist upload``.

Expand Down
2 changes: 1 addition & 1 deletion skll/version.py
Expand Up @@ -7,5 +7,5 @@
:organization: ETS
"""

__version__ = '1.5.2'
__version__ = '1.5.3'
VERSION = tuple(int(x) for x in __version__.split('.'))

0 comments on commit f08b38d

Please sign in to comment.