Skip to content

Commit

Permalink
Release v0.6.2
Browse files Browse the repository at this point in the history
  • Loading branch information
althonos committed Jan 18, 2020
1 parent 445c5d0 commit 93d2f93
Show file tree
Hide file tree
Showing 11 changed files with 38 additions and 30 deletions.
2 changes: 1 addition & 1 deletion .appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: '0.6.1-rev{build}'
version: '0.6.2-rev{build}'
clone_depth: 5
environment:
TARGET: x86_64-pc-windows-msvc
Expand Down
9 changes: 7 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
sudo: false
dist: xenial

env:
Expand Down Expand Up @@ -69,9 +68,15 @@ jobs:
<<: *test-python
- python: pypy3
if: tag IS present
env: TAG=pp371
<<: *test-python
- python: pypy3.5
- python: pypy3
if: tag IS present
env: TAG=pp372
<<: *test-python
- python: pypy3
if: tag IS present
env: TAG=pp373
<<: *test-python
# OSX
- env: PYTHON=python3.5
Expand Down
14 changes: 13 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,19 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased]

[Unreleased]: https://github.com/fastobo/fastobo-py/compare/v0.6.1...HEAD
[Unreleased]: https://github.com/fastobo/fastobo-py/compare/v0.6.2...HEAD


## [v0.6.2] - 2020-01-18

[v0.6.2]: https://github.com/fastobo/fastobo-py/compare/v0.6.1...v0.6.2

### Added
- Compilation of Python 3.8, PyPy 3.5 and PyPy 3.6 wheels for OSX.

### Fixed
- Bumped `fastobo` to `v0.7.5`, which should finally support Windows
style line-endings.


## [v0.6.1] - 2019-11-19
Expand Down
2 changes: 1 addition & 1 deletion COPYING
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2019 Martin Larralde
Copyright (c) 2019-2020 Martin Larralde

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ members = ["derive"]

[package]
name = "fastobo-py"
version = "0.6.1"
version = "0.6.2"
authors = ["Martin Larralde <martin.larralde@ens-paris-saclay.fr>"]
publish = false
build = "src/build.rs"
Expand Down
11 changes: 3 additions & 8 deletions ci/travis/manylinux/after_success.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,9 @@ fi

if [ ! -z "$TRAVIS_TAG" ]; then

case $TRAVIS_PYTHON_VERSION in
pypy3)
TAG=pp371-pypy3_71
;;
*)
TAG=cp$(echo $TRAVIS_PYTHON_VERSION | sed 's/\.//')
;;
esac
if [ ! "$TRAVIS_PYTHON_VERSION" = "pypy3" ]; then
TAG=cp$(echo $TRAVIS_PYTHON_VERSION | sed 's/\.//')
fi

log Building wheel with $TAG
docker exec -it manylinux sh /io/ci/travis/manylinux/_after_success.sh $TAG
Expand Down
11 changes: 3 additions & 8 deletions ci/travis/manylinux/script.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,9 @@

# --- Test -------------------------------------------------------------------

case $TRAVIS_PYTHON_VERSION in
pypy3)
TAG=pp371-pypy3_71
;;
*)
TAG=cp$(echo $TRAVIS_PYTHON_VERSION | sed 's/\.//')
;;
esac
if [ ! "$TRAVIS_PYTHON_VERSION" = "pypy3" ]; then
TAG=cp$(echo $TRAVIS_PYTHON_VERSION | sed 's/\.//')
fi

log Running test with $TAG
docker exec -it manylinux sh /io/ci/travis/manylinux/_script.sh $TAG
6 changes: 3 additions & 3 deletions ci/travis/osx/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,15 @@ if [ "$PYTHON" = "pypy3.7" ]; then
ln -s /usr/local/bin/pypy3 /usr/local/bin/python3
elif [ "$PYTHON" = "pypy3.6" ]; then
log Installing PyPy v3.6
pyenv install pypy3.6-7.3.0
pyenv install --skip-existing pypy3.6-7.3.0
pyenv shell pypy3.6-7.3.0
elif [ "$PYTHON" = "pypy3.5" ]; then
log Installing PyPy v3.5
pyenv install pypy3.5-7.0.0
pyenv install --skip-existing pypy3.5-7.0.0
pyenv shell pypy3.5-7.0.0
else
log Installing Python v${PYTHON#python}
pyenv install ${PYTHON#python}-dev
pyenv install --skip-existing ${PYTHON#python}-dev
pyenv shell ${PYTHON#python}-dev
fi

Expand Down
2 changes: 1 addition & 1 deletion derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fastobo-py-derive-internal"
version = "0.6.1"
version = "0.6.2"
authors = ["Martin Larralde <martin.larralde@ens-cachan.fr>"]
edition = "2018"
publish = false
Expand Down
3 changes: 2 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = fastobo
version = 0.6.1
version = 0.6.2
author = Martin Larralde
author-email = martin.larralde@ens-paris-saclay.fr
home-page = https://github.com/fastobo/fastobo-py
Expand All @@ -20,6 +20,7 @@ classifiers =
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
Topic :: Scientific/Engineering :: Bio-Informatics
Expand Down

0 comments on commit 93d2f93

Please sign in to comment.