Skip to content

Commit

Permalink
bump fsspec version (#45)
Browse files Browse the repository at this point in the history
* bump fsspec version after bugfix
* dev setup for updated env
* bump fsspec in setup.py
  • Loading branch information
ryanSoley authored Mar 15, 2021
1 parent e77d345 commit 38fcfeb
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,8 @@ pip install rubicon-ml
Then use conda to setup a development environment:

```bash
conda env create -f ci/environment.yml
conda create -n rubicon-dev python=3.8
conda env update -f ci/environment.yml -n rubicon-dev
conda activate rubicon-dev
```

Expand Down
8 changes: 4 additions & 4 deletions ci/environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ dependencies:
- click>=7.1
- dask>=2.12.0
- pandas>=1.0
- fsspec>=0.8.3
- fsspec>=0.8.7
- intake>=0.5.2
- pyarrow>=0.18.0
- pyyaml>=5.4.0
Expand All @@ -19,22 +19,22 @@ dependencies:
- prefect>=0.12.0

# required for UI (including testing)
- beautifulsoup4>=4.8.2
- dash>=1.14.0
- dash-bootstrap-components>=0.10.6
- percy>=2.0.2
- selenium>=3.141.0
- beautifulsoup4>=4.8.2

# required for testing
- black
- flake8
- isort
- pytest
- pytest-cov
- percy>=2.0.2

# required for versioning
- versioneer

# packaging
- wheel
- setuptools
- wheel
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
install_requires = [
"click>=7.1",
"dask[dataframe]>=2.12.0",
"fsspec>=0.8.3",
"fsspec>=0.8.7",
"intake>=0.5.2",
"pyarrow>=0.18.0",
"pyyaml>=5.4.0",
Expand Down

0 comments on commit 38fcfeb

Please sign in to comment.