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

Remove configurable workspace directory #714

Merged
merged 8 commits into from
Apr 12, 2022

Conversation

vyasr
Copy link
Contributor

@vyasr vyasr commented Mar 14, 2022

Description

This PR removes the functionality for users to use a custom workspace directory. Going forward, the workspace will always be an immediate subdirectory of the project called "workspace".

Motivation and Context

Resolves #390.

Checklist:

@vyasr vyasr added enhancement New feature or request requires-1.x-deprecation Changes for 2.0 that require a deprecation to be added in 1.x. labels Mar 14, 2022
@vyasr vyasr added this to the v2.0.0 milestone Mar 14, 2022
@vyasr vyasr self-assigned this Mar 14, 2022
@vyasr vyasr requested review from a team as code owners March 14, 2022 01:58
@vyasr vyasr requested review from mikemhenry and lyrivera and removed request for a team March 14, 2022 01:58
@codecov
Copy link

codecov bot commented Mar 16, 2022

Codecov Report

Merging #714 (9244368) into schema2 (d727d82) will increase coverage by 0.05%.
The diff coverage is 78.94%.

@@             Coverage Diff             @@
##           schema2     #714      +/-   ##
===========================================
+ Coverage    86.57%   86.62%   +0.05%     
===========================================
  Files           53       53              
  Lines         5133     5130       -3     
  Branches      1126     1124       -2     
===========================================
  Hits          4444     4444              
+ Misses         489      485       -4     
- Partials       200      201       +1     
Impacted Files Coverage Δ
signac/common/validate.py 100.00% <ø> (ø)
signac/__main__.py 78.36% <50.00%> (+0.16%) ⬆️
signac/contrib/migration/v1_to_v2.py 89.18% <77.77%> (-3.67%) ⬇️
signac/contrib/project.py 89.14% <100.00%> (+0.02%) ⬆️
signac/contrib/migration/__init__.py 86.20% <0.00%> (+3.44%) ⬆️

Continue to review full report at Codecov.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update d727d82...9244368. Read the comment docs.

vyasr and others added 2 commits March 19, 2022 13:35
Co-authored-by: Bradley Dice <bdice@bradleydice.com>
@vyasr vyasr requested a review from bdice March 19, 2022 20:47
Copy link
Member

@bdice bdice left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

One comment, one refactor, one suggestion for naming. Looks good, thank you!

@vyasr vyasr mentioned this pull request Mar 31, 2022
6 tasks
@vyasr
Copy link
Contributor Author

vyasr commented Apr 2, 2022

This PR is awaiting resolution of the above discussion on deprecations, and then it should be good to go.

@vyasr vyasr merged commit ffef6d8 into schema2 Apr 12, 2022
@vyasr vyasr deleted the schema/remove_configurable_workspace branch April 12, 2022 05:35
vyasr added a commit that referenced this pull request Apr 14, 2022
* Remove workspace configurability.

* Implement workspace_dir migration.

* Apply suggestions from code review

Co-authored-by: Bradley Dice <bdice@bradleydice.com>

* Address remaining PR comments.

* Update tests/test_project.py

* Remove mention of configurability from project workspace docstring

* Address PR comments.

Co-authored-by: Bradley Dice <bdice@bradleydice.com>
Co-authored-by: Corwin Kerr <cbkerr@umich.edu>
vyasr added a commit that referenced this pull request Apr 19, 2022
* Remove workspace configurability.

* Implement workspace_dir migration.

* Apply suggestions from code review

Co-authored-by: Bradley Dice <bdice@bradleydice.com>

* Address remaining PR comments.

* Update tests/test_project.py

* Remove mention of configurability from project workspace docstring

* Address PR comments.

Co-authored-by: Bradley Dice <bdice@bradleydice.com>
Co-authored-by: Corwin Kerr <cbkerr@umich.edu>
vyasr added a commit that referenced this pull request Apr 19, 2022
* Initial migration to schema version 2 including config rename (#678)

* Implement initial migration to schema version 2.

* Require project-local config to be signac.rc (not .signacrc) and make searches stricter to match.

* Standardize method for getting project config at a root.

* Move config to .signac/config.

* Fix import order.

* Address PR comments.

* Remove some unnecessary code.

* Address final PR coments.

* Use integer schema version numbers (#688)

* Change schema versioning to use integer strings.

* Switch from int strings to pure ints.

* Update signac/contrib/migration/__init__.py

Co-authored-by: Bradley Dice <bdice@bradleydice.com>

Co-authored-by: Bradley Dice <bdice@bradleydice.com>

* Remove project name from schema (#684)

* Remove project id API.

* Remove project name from config as part of migration.

* Fix issues with config CLI and remove project from default cfg.

* Address PR comments.

* Change the str of a project to the str of its root directory.

* Change Project constructor to use root directory (#706)

* Change project constructor to accept a root directory instead of a config file.

* Change Project repr.

* Address easy PR comments.

* Move internal signac files into .signac subdirectory (#708)

* Move shell history.

* Move sp_cache file.

* Address PR comments.

* Move discovery to separate functions. (#711)

* Move discovery to separate functions.

* Address first round of PR comments.

* Address PR comments.

* Apply suggestions.

* Remove configurable workspace directory  (#714)

* Remove workspace configurability.

* Implement workspace_dir migration.

* Apply suggestions from code review

Co-authored-by: Bradley Dice <bdice@bradleydice.com>

* Address remaining PR comments.

* Update tests/test_project.py

* Remove mention of configurability from project workspace docstring

* Address PR comments.

Co-authored-by: Bradley Dice <bdice@bradleydice.com>
Co-authored-by: Corwin Kerr <cbkerr@umich.edu>

* Update description of schema migration.

* [pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci

Co-authored-by: Bradley Dice <bdice@bradleydice.com>
Co-authored-by: Corwin Kerr <cbkerr@umich.edu>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
vyasr added a commit that referenced this pull request Apr 21, 2022
* Remove workspace configurability.

* Implement workspace_dir migration.

* Apply suggestions from code review

Co-authored-by: Bradley Dice <bdice@bradleydice.com>

* Address remaining PR comments.

* Update tests/test_project.py

* Remove mention of configurability from project workspace docstring

* Address PR comments.

Co-authored-by: Bradley Dice <bdice@bradleydice.com>
Co-authored-by: Corwin Kerr <cbkerr@umich.edu>
vyasr added a commit that referenced this pull request May 2, 2022
* Remove workspace configurability.

* Implement workspace_dir migration.

* Apply suggestions from code review

Co-authored-by: Bradley Dice <bdice@bradleydice.com>

* Address remaining PR comments.

* Update tests/test_project.py

* Remove mention of configurability from project workspace docstring

* Address PR comments.

Co-authored-by: Bradley Dice <bdice@bradleydice.com>
Co-authored-by: Corwin Kerr <cbkerr@umich.edu>
bdice added a commit that referenced this pull request Jun 14, 2022
* Remove workspace configurability.

* Implement workspace_dir migration.

* Apply suggestions from code review

Co-authored-by: Bradley Dice <bdice@bradleydice.com>

* Address remaining PR comments.

* Update tests/test_project.py

* Remove mention of configurability from project workspace docstring

* Address PR comments.

Co-authored-by: Bradley Dice <bdice@bradleydice.com>
Co-authored-by: Corwin Kerr <cbkerr@umich.edu>
bdice added a commit that referenced this pull request Aug 1, 2022
* Remove workspace configurability.

* Implement workspace_dir migration.

* Apply suggestions from code review

Co-authored-by: Bradley Dice <bdice@bradleydice.com>

* Address remaining PR comments.

* Update tests/test_project.py

* Remove mention of configurability from project workspace docstring

* Address PR comments.

Co-authored-by: Bradley Dice <bdice@bradleydice.com>
Co-authored-by: Corwin Kerr <cbkerr@umich.edu>
bdice added a commit that referenced this pull request Oct 7, 2022
* Remove workspace configurability.

* Implement workspace_dir migration.

* Apply suggestions from code review

Co-authored-by: Bradley Dice <bdice@bradleydice.com>

* Address remaining PR comments.

* Update tests/test_project.py

* Remove mention of configurability from project workspace docstring

* Address PR comments.

Co-authored-by: Bradley Dice <bdice@bradleydice.com>
Co-authored-by: Corwin Kerr <cbkerr@umich.edu>
bdice added a commit that referenced this pull request Oct 27, 2022
* Remove workspace configurability.

* Implement workspace_dir migration.

* Apply suggestions from code review

Co-authored-by: Bradley Dice <bdice@bradleydice.com>

* Address remaining PR comments.

* Update tests/test_project.py

* Remove mention of configurability from project workspace docstring

* Address PR comments.

Co-authored-by: Bradley Dice <bdice@bradleydice.com>
Co-authored-by: Corwin Kerr <cbkerr@umich.edu>
vyasr added a commit that referenced this pull request Oct 30, 2022
* Remove workspace configurability.

* Implement workspace_dir migration.

* Apply suggestions from code review

Co-authored-by: Bradley Dice <bdice@bradleydice.com>

* Address remaining PR comments.

* Update tests/test_project.py

* Remove mention of configurability from project workspace docstring

* Address PR comments.

Co-authored-by: Bradley Dice <bdice@bradleydice.com>
Co-authored-by: Corwin Kerr <cbkerr@umich.edu>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request requires-1.x-deprecation Changes for 2.0 that require a deprecation to be added in 1.x.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants