Skip to content

Commit

Permalink
Bump version number to 2.3.9 and remove Python 3.5 support
Browse files Browse the repository at this point in the history
  • Loading branch information
gmrukwa committed Dec 29, 2019
1 parent 8b0cdc3 commit 24b7de1
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 18 deletions.
7 changes: 1 addition & 6 deletions .github/actions/build-python-dist/entrypoint.sh
Original file line number Diff line number Diff line change
@@ -1,12 +1,7 @@
#!/usr/bin/env bash

/opt/python/cp35-cp35m/bin/pip install -r requirements-base.txt
/opt/python/cp35-cp35m/bin/python setup.py sdist
/opt/python/cp35-cp35m/bin/pip wheel . -w dist/tmp
auditwheel repair dist/tmp/divik*whl -w dist
rm -rf dist/tmp

/opt/python/cp36-cp36m/bin/pip install -r requirements-base.txt
/opt/python/cp36-cp36m/bin/python setup.py sdist
/opt/python/cp36-cp36m/bin/pip wheel . -w dist/tmp
auditwheel repair dist/tmp/divik*whl -w dist
rm -rf dist/tmp
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:
env:
MAJOR: ${{ 2 }}
MINOR: ${{ 3 }}
FIXUP: ${{ 8 }}
FIXUP: ${{ 9 }}
PACKAGE_INIT_FILE: ${{ 'divik/__init__.py' }}
DOCKER_REPO: ${{ 'gmrukwa/divik' }}
IS_ALPHA: ${{ github.event_name == 'pull_request' }}
Expand Down Expand Up @@ -97,7 +97,7 @@ jobs:
runs-on: windows-latest
strategy:
matrix:
python-version: [ '3.5', '3.6', '3.7', '3.8' ]
python-version: [ '3.6', '3.7', '3.8' ]
fail-fast: false
name: Python ${{ matrix.python-version }} Windows build
env:
Expand Down Expand Up @@ -134,7 +134,7 @@ jobs:
runs-on: macos-latest
strategy:
matrix:
python-version: [ '3.5', '3.6', '3.7', '3.8' ]
python-version: [ '3.6', '3.7', '3.8' ]
fail-fast: false
name: Python ${{ matrix.python-version }} MacOS build
env:
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,14 +39,14 @@ docker pull gmrukwa/divik
To install specific version, you can specify it in the command, e.g.:

```bash
docker pull gmrukwa/divik:2.3.8
docker pull gmrukwa/divik:2.3.9
```

## Python package

Prerequisites for installation of base package:

- Python 3.5 / 3.6 / 3.7
- Python 3.6 / 3.7 / 3.8
- compiler capable of compiling the native C code

Having prerequisites installed, one can install latest base version of the
Expand All @@ -59,7 +59,7 @@ pip install divik
or any stable tagged version, e.g.:

```bash
pip install divik==2.3.8
pip install divik==2.3.9
```

# References
Expand Down
2 changes: 1 addition & 1 deletion divik/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = '2.3.8'
__version__ = '2.3.9'

from ._seeding import seeded
from ._utils import DivikResult
Expand Down
6 changes: 3 additions & 3 deletions docs/instructions/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@ To install latest stable version use::

To install specific version, you can specify it in the command, e.g.::

docker pull gmrukwa/divik:2.3.8
docker pull gmrukwa/divik:2.3.9

Python package
--------------

Prerequisites for installation of base package:

- Python 3.5 / 3.6 / 3.7
- Python 3.6 / 3.7 / 3.8
- compiler capable of compiling the native C code

Having prerequisites installed, one can install latest base version of the
Expand All @@ -31,4 +31,4 @@ package::

or any stable tagged version, e.g.::

pip install divik==2.3.8
pip install divik==2.3.9
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
Expand Down Expand Up @@ -62,7 +61,7 @@
setup_requires=[
'numpy>=0.12.1',
],
python_requires='>=3.5',
python_requires='>=3.6',
package_data={
},
ext_modules=[
Expand Down

0 comments on commit 24b7de1

Please sign in to comment.