Skip to content

Commit

Permalink
Merge pull request #36 from arup-group/v0.2.0
Browse files Browse the repository at this point in the history
v0.2.0 Python 3.11 support
  • Loading branch information
val-ismaili committed May 9, 2023
2 parents e833221 + 3300663 commit dbb6ac5
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 3 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# [v0.2.0]

## What's Changed

### Added
- Support for Python 3.11 by @val-ismaili in https://github.com/arup-group/osmox/pull/35
- A formal changelog

# [v0.1.0]

# Initial release

This is the first release and support Python 3.7, please check documentation/wiki for the usage guide
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,9 @@ Once assembled, these form part of our wider pipeline. But as a standalone tool,

## Install

Note: you can use the instructions [here](#using-docker) to build a Docker image for OSMOX and run it in a container if you cannot install it locally.
OSMOX can be installed on both Python 3.7 and 3.11 environments.

Note: you can use the instructions [here](#using-docker) to build a Docker image for OSMOX and run it in a container if you cannot install it locally. This builds in a Python 3.7 environment.

I. Installation for Mac
```{sh}
Expand All @@ -39,7 +41,7 @@ It is recommended to use an Anaconda environment for installation on Windows:

```{sh}
# Create a new environment in Anaconda
conda create -n osmox python=3.7
conda create -n osmox python=3.11
conda activate osmox
conda install geopandas
Expand Down
2 changes: 1 addition & 1 deletion osmox/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.0.0"
__version__ = "0.2.0"
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,6 @@
description="A command line tool for processing osmfs into facility locations.",
packages=find_packages(),
install_requires=required,
python_requires='>=3.7',
entry_points={"console_scripts": ["osmox = osmox.main:osmox"]},
)

0 comments on commit dbb6ac5

Please sign in to comment.