Skip to content

Commit cd1b4f4

Browse files
authored
clean-up for conda-forge (#38)
* Update __init__.py * Update build.yml * Update __init__.py * Update setup.py * Update particle_track.py typo fix
1 parent 487c239 commit cd1b4f4

File tree

4 files changed

+4
-6
lines changed

4 files changed

+4
-6
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,14 +43,14 @@ jobs:
4343
file: ./coverage.xml
4444
env_vars: OS,PYTHON
4545
name: codecov-umbrella
46-
fail_ci_if_error: true
46+
fail_ci_if_error: false
4747

4848
legacy:
4949
runs-on: ${{ matrix.os }}
5050
strategy:
5151
fail-fast: false
5252
matrix:
53-
os: [ubuntu-latest, windows-latest]
53+
os: [ubuntu-20.04, windows-2019]
5454
python-version: [2.7]
5555
env:
5656
OS: ${{ matrix.os }}

dorado/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
__version__ = "2.5.1"
22

3-
43
from . import lagrangian_walker
54
from . import parallel_routing
65
from . import particle_track

dorado/particle_track.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -463,7 +463,7 @@ def generate_particles(self,
463463
previous_walk_data : `dict`, optional
464464
Dictionary of all prior x locations, y locations, and travel
465465
times. This input parameter should only be used if 'new' or
466-
'indpendent' walk data exists (e.g. data loaded from a .json
466+
'independent' walk data exists (e.g. data loaded from a .json
467467
file). Otherwise the walk data stored in `self.walk_data` is
468468
likely to contain the previous information. Order of indices is
469469
previous_walk_data[field][particle][iter], where e.g.

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
import os
22
from setuptools import setup, find_packages
3-
from dorado import __version__
43

54
setup(
65
name = 'pydorado',
7-
version = __version__,
6+
version = '2.5.1',
87
license = 'MIT',
98
description = 'dorado - Lagrangian particle routing routine via weighted random walks',
109
author = 'J. Hariharan, K. Wright, P. Passalacqua',

0 commit comments

Comments
 (0)