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

Changelog note about DVC #14

Merged
merged 1 commit into from
May 29, 2024
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ You should also add project tags for each release in Github, see [Managing relea
- All build and packaging switched to use only pyproject.toml
- Minimum python version changed to 3.10
- Github workflow checks python versions 3.10, 3.11, 3.12
- Updated DVC version to avoid `ImportError: cannot import name 'fsspec_loop'` in older versions
### Removed
- Removed setup.cfg

Expand Down
13 changes: 7 additions & 6 deletions dvc.lock
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
schema: '2.0'
stages:
count-words:
cmd: python cdstemplate/corpus_counter_script.py data/gutenberg_counts.csv data/gutenberg/*.txt
--case-insensitive
cmd: python src/cdstemplate/corpus_counter_script.py data/gutenberg_counts.csv
data/gutenberg/*.txt --case-insensitive
deps:
- path: cdstemplate/corpus_counter_script.py
md5: ac6a52d942221938c5cb256015701a4e
size: 2237
- path: data/gutenberg
md5: 41d960155f1a7f55480c03cea68ba2a7.dir
size: 11000
size: 10940
nfiles: 11
- path: src/cdstemplate/corpus_counter_script.py
hash: md5
md5: a4bb400c0cfd7050ac4b761b550a0a56
size: 2582
outs:
- path: data/gutenberg_counts.csv
md5: 74abc508b4e4015ab4136405df251a57
Expand Down
4 changes: 2 additions & 2 deletions dvc.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
stages:
count-words:
cmd: python cdstemplate/corpus_counter_script.py data/gutenberg_counts.csv data/gutenberg/*.txt --case-insensitive
cmd: python src/cdstemplate/corpus_counter_script.py data/gutenberg_counts.csv data/gutenberg/*.txt --case-insensitive
deps:
- cdstemplate/corpus_counter_script.py
- src/cdstemplate/corpus_counter_script.py
- data/gutenberg
outs:
- data/gutenberg_counts.csv
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "cdstemplate"
version = "1.0.0"
version = "2.0.0"
description = "A template repo for data science and machine learning projects at UMass Center for Data Science."
readme = "README.md"

Expand All @@ -22,7 +22,7 @@ classifiers = [

# All the dependencies needed for running your module go here
dependencies = [
"dvc==2.10.2",
"dvc>=2.42.0",
"numpy",
"pandas",
"scikit-learn",
Expand Down
Loading