Skip to content

Commit

Permalink
unpin dependency versions (#101)
Browse files Browse the repository at this point in the history
* unpin dependency versions

* drop support for python 3.7

* update readme
  • Loading branch information
thurber authored Jan 10, 2023
1 parent 6ad55bc commit f546cfa
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 36 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:

env:
OS: ${{ matrix.os }}
PYTHON: '3.7'
PYTHON: '3.8'

steps:

Expand All @@ -21,7 +21,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@master
with:
python-version: 3.7
python-version: 3.8

- name: Install dependencies
run: |
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ For a quick start, check out the [Jupyter notebook tutorial](https://github.com/

## getting started

Ensure you have Python >= 3.7 available (consider using a [virtual environment](https://github.com/pyenv/pyenv), see the docs [here](https://mosartwmpy.readthedocs.io/en/latest/virtualenv.html) for a brief tutorial), then install `mosartwmpy` with:
Ensure you have Python >= 3.8 available (consider using a [virtual environment](https://github.com/pyenv/pyenv), see the docs [here](https://mosartwmpy.readthedocs.io/en/latest/virtualenv.html) for a brief tutorial), then install `mosartwmpy` with:
```shell
pip install mosartwmpy
```
Expand Down
2 changes: 1 addition & 1 deletion mosartwmpy/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.5.1"
__version__ = "0.5.2"
64 changes: 32 additions & 32 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def readme():
description='Python implementation of MOSART-WM: A water routing and management model',
long_description=readme(),
long_description_content_type="text/markdown",
python_requires='>=3.7.*, <4',
python_requires='>=3.8.*, <4',
include_package_data=True,
entry_points={
'console_scripts': [
Expand All @@ -30,40 +30,40 @@ def readme():
]
},
install_requires=[
'bmipy~=2.0',
'click~=8.0.1',
'contextily~=1.2.0',
'dask[complete]~=2021.10.0',
'geopandas~=0.10.2',
'h5netcdf~=0.11.0',
'hvplot~=0.7.3',
'matplotlib~=3.4.3',
'nc-time-axis~=1.4.0',
'netCDF4~=1.5.7',
'numba~=0.53.1',
'numpy~=1.20.3',
'pandas~=1.3.4',
'pathvalidate~=2.5.0',
'psutil~=5.8.0',
'pyarrow~=6.0.0',
'pyomo~=6.2',
'python-benedict~=0.24.3',
'regex~=2021.10.23',
'requests~=2.26.0',
'rioxarray~=0.8.0',
'tqdm~=4.62.3',
'xarray~=0.19.0'
'bmipy>=2.0',
'click>=8.0.1',
'contextily>=1.2.0',
'dask[complete]>=2021.10.0',
'geopandas>=0.10.2',
'h5netcdf>=0.11.0',
'hvplot>=0.7.3',
'matplotlib>=3.4.3',
'nc-time-axis>=1.4.0',
'netCDF4>=1.5.7',
'numba>=0.53.1',
'numpy>=1.20.3',
'pandas>=1.3.4',
'pathvalidate>=2.5.0',
'psutil>=5.8.0',
'pyarrow>=6.0.0',
'pyomo>=6.2',
'python-benedict>=0.24.3',
'regex>=2021.10.23',
'requests>=2.26.0',
'rioxarray>=0.8.0',
'tqdm>=4.62.3',
'xarray>=0.19.0'
],
extras_require={
'dev': [
'build~=0.7.0',
'nbsphinx~=0.8.7',
'recommonmark~=0.7.1',
'setuptools~=58.3.0',
'sphinx~=4.2.0',
'sphinx-panels~=0.6.0',
'sphinx-rtd-theme~=1.0.0',
'twine~=3.4.2'
'build>=0.7.0',
'nbsphinx>=0.8.7',
'recommonmark>=0.7.1',
'setuptools>=58.3.0',
'sphinx>=4.2.0',
'sphinx-panels>=0.6.0',
'sphinx-rtd-theme>=1.0.0',
'twine>=3.4.2'
]
}
)

0 comments on commit f546cfa

Please sign in to comment.