Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 4c5b2f2

Browse files
committedMay 29, 2024·
Changelog note about DVC
1 parent d30915a commit 4c5b2f2

File tree

4 files changed

+12
-10
lines changed

4 files changed

+12
-10
lines changed
 

‎CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ You should also add project tags for each release in Github, see [Managing relea
1717
- All build and packaging switched to use only pyproject.toml
1818
- Minimum python version changed to 3.10
1919
- Github workflow checks python versions 3.10, 3.11, 3.12
20+
- Updated DVC version to avoid `ImportError: cannot import name 'fsspec_loop'` in older versions
2021
### Removed
2122
- Removed setup.cfg
2223

‎dvc.lock

+7-6
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,17 @@
11
schema: '2.0'
22
stages:
33
count-words:
4-
cmd: python cdstemplate/corpus_counter_script.py data/gutenberg_counts.csv data/gutenberg/*.txt
5-
--case-insensitive
4+
cmd: python src/cdstemplate/corpus_counter_script.py data/gutenberg_counts.csv
5+
data/gutenberg/*.txt --case-insensitive
66
deps:
7-
- path: cdstemplate/corpus_counter_script.py
8-
md5: ac6a52d942221938c5cb256015701a4e
9-
size: 2237
107
- path: data/gutenberg
118
md5: 41d960155f1a7f55480c03cea68ba2a7.dir
12-
size: 11000
9+
size: 10940
1310
nfiles: 11
11+
- path: src/cdstemplate/corpus_counter_script.py
12+
hash: md5
13+
md5: a4bb400c0cfd7050ac4b761b550a0a56
14+
size: 2582
1415
outs:
1516
- path: data/gutenberg_counts.csv
1617
md5: 74abc508b4e4015ab4136405df251a57

‎dvc.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
stages:
22
count-words:
3-
cmd: python cdstemplate/corpus_counter_script.py data/gutenberg_counts.csv data/gutenberg/*.txt --case-insensitive
3+
cmd: python src/cdstemplate/corpus_counter_script.py data/gutenberg_counts.csv data/gutenberg/*.txt --case-insensitive
44
deps:
5-
- cdstemplate/corpus_counter_script.py
5+
- src/cdstemplate/corpus_counter_script.py
66
- data/gutenberg
77
outs:
88
- data/gutenberg_counts.csv

‎pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"
66

77
[project]
88
name = "cdstemplate"
9-
version = "1.0.0"
9+
version = "2.0.0"
1010
description = "A template repo for data science and machine learning projects at UMass Center for Data Science."
1111
readme = "README.md"
1212

@@ -22,7 +22,7 @@ classifiers = [
2222

2323
# All the dependencies needed for running your module go here
2424
dependencies = [
25-
"dvc==2.10.2",
25+
"dvc>=2.42.0",
2626
"numpy",
2727
"pandas",
2828
"scikit-learn",

0 commit comments

Comments
 (0)
Please sign in to comment.