Skip to content

Commit 1d4dc1e

Browse files
committed
v0.4.5 release
1 parent 2e2fd1b commit 1d4dc1e

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,15 +59,15 @@ PlanetUtils is a "high level" library that makes use of [Osmosis](https://wiki.o
5959
Make sure you have [Docker](https://www.docker.com/community-edition) installed. Then:
6060

6161
```sh
62-
docker pull interline/planetutils:release-v0.4.4
62+
docker pull interline/planetutils:release-v0.4.5
6363
```
6464

6565
Any of the example commands below can be executed with `docker run`. It may be helpful to mount a local directory inside the container for persistence and to access output files.
6666

6767
- Example of using `docker run` with the `data` directory mounted as `/data`:
6868

6969
```sh
70-
docker run --rm -v ${PWD}/data:/data -t interline/planetutils:release-v0.4.4 <command>
70+
docker run --rm -v ${PWD}/data:/data -t interline/planetutils:release-v0.4.5 <command>
7171
```
7272

7373
### Using Homebrew on Mac OS
@@ -82,7 +82,7 @@ brew install interline-io/planetutils/planetutils
8282

8383
If you want to install and use the Python package directly, you'll need to provide:
8484

85-
- Python 2.x
85+
- Python 2.x or 3.x
8686
- Java and [Osmosis](https://wiki.openstreetmap.org/wiki/Osmosis)
8787
- [OSM C tools](https://gitlab.com/osm-c-tools/osmctools/)
8888
- [Osmium Tool](https://osmcode.org/osmium-tool/)

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
long_description = f.read()
1010

1111
setup(name='interline-planetutils',
12-
version='0.4.3',
12+
version='0.4.5',
1313
description='Interline PlanetUtils',
1414
long_description=long_description,
1515
url='https://github.com/interline-io/planetutils',
@@ -36,6 +36,7 @@
3636
'Development Status :: 5 - Production/Stable',
3737
'Intended Audience :: Developers',
3838
'License :: OSI Approved :: MIT License',
39-
'Programming Language :: Python :: 2.7'
39+
'Programming Language :: Python :: 2.7',
40+
'Programming Language :: Python :: 3.7'
4041
]
4142
)

0 commit comments

Comments
 (0)