Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare v0.1.2 #10

Merged
merged 1 commit into from
May 10, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/bump-version.yml
Original file line number Diff line number Diff line change
@@ -15,12 +15,12 @@ on:
- .yamllint.yaml
- AUTHORS.rst
- CONTRIBUTING.rst
- doc/notebooks
- doc/*.py
- doc/*.rst
- docs/notebooks
- docs/*.py
- docs/*.rst
- environment-dev.yml
- environment.yml
- HISTORY.rst
- CHANGES.rst
- Makefile
- MANIFEST.in
- requirements_upstream.txt
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
@@ -7,7 +7,7 @@
with open('README.rst') as readme_file:
readme = readme_file.read()

with open('HISTORY.rst') as history_file:
with open('CHANGES.rst') as history_file:
history = history_file.read()

requirements = [
@@ -39,16 +39,16 @@
setup(
author="Thomas-Charles Fortier Filion",
author_email='tcff_hydro@outlook.com',
python_requires='>=3.6',
python_requires='>=3.8',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
],
description="Hydrology analysis build with xarray",
install_requires=requirements,