-
Notifications
You must be signed in to change notification settings - Fork 29
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 #48 from snipsco/release/0.6.2
Release/0.6.2
- Loading branch information
Showing
8 changed files
with
66 additions
and
6 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 |
---|---|---|
@@ -0,0 +1,49 @@ | ||
environment: | ||
matrix: | ||
- PYTHON: "C:\\Python27-x64" | ||
TARGET: x86_64-pc-windows-msvc | ||
- PYTHON: "C:\\Python36-x64" | ||
TARGET: x86_64-pc-windows-msvc | ||
|
||
branches: | ||
only: | ||
- master | ||
- develop | ||
|
||
install: | ||
- appveyor-retry appveyor DownloadFile https://win.rustup.rs/ -FileName rustup-init.exe | ||
- rustup-init.exe -y --default-host %TARGET% | ||
- set PATH=%PATH%;C:\Users\appveyor\.cargo\bin | ||
- if defined MSYS2_BITS set PATH=%PATH%;C:\msys64\mingw%MSYS2_BITS%\bin | ||
- rustc -V | ||
- cargo -V | ||
- "%PYTHON%\\python.exe -m pip install -r python/requirements.txt" | ||
|
||
build: false | ||
|
||
test_script: | ||
- cargo test --verbose | ||
- cd python | ||
- "%PYTHON%\\python.exe -m pip install -e . --verbose" | ||
- "%PYTHON%\\python.exe -m unittest discover" | ||
|
||
after_test: | ||
- ECHO "BUILDING WHEELS..." | ||
- "%PYTHON%\\python.exe setup.py bdist_wheel" | ||
|
||
artifacts: | ||
- path: python\dist\* | ||
name: pypiartifacts | ||
|
||
for: | ||
- | ||
branches: | ||
only: | ||
- master | ||
|
||
environment: | ||
matrix: | ||
- PYTHON: "C:\\Python27" | ||
TARGET: i686-pc-windows-msvc | ||
- PYTHON: "C:\\Python36" | ||
TARGET: i686-pc-windows-msvc |
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,9 +1,15 @@ | ||
# Changelog | ||
All notable changes to this project will be documented in this file. | ||
|
||
## [0.7.0] - 2018-09-27 | ||
### Added | ||
- Italian support | ||
- Appveyor CI | ||
|
||
## [0.6.1] - 2018-04-13 | ||
|
||
### Added | ||
- Add `get_shape` function | ||
|
||
[0.7.0]: https://github.com/snipsco/snips-nlu-utils/compare/0.6.1...0.7.0 | ||
[0.6.1]: https://github.com/snipsco/snips-nlu-utils/compare/0.6.0...0.6.1 |
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,2 +1,3 @@ | ||
setuptools_rust==0.8.3 | ||
wheel==0.30.0 | ||
twine==1.11.0 | ||
wheel==0.30.0 |
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 +1 @@ | ||
0.6.1 | ||
0.7.0 |
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,12 +1,12 @@ | ||
[package] | ||
name = "snips-nlu-utils-py" | ||
version = "0.6.1" | ||
version = "0.7.0" | ||
authors = ["Adrien Ball <adrien.ball@snips.ai>"] | ||
|
||
[lib] | ||
name = "_snips_nlu_utils_py" | ||
crate-type = ["cdylib"] | ||
|
||
[dependencies] | ||
snips-nlu-utils = { git = "https://github.com/snipsco/snips-nlu-utils", tag = "0.6.1" } | ||
snips-nlu-utils = { git = "https://github.com/snipsco/snips-nlu-utils", tag = "0.7.0" } | ||
cpython = { version="0.1", default-features=false } |
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