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

Use integer schema version numbers #688

Merged
merged 3 commits into from
Feb 26, 2022
Merged

Use integer schema version numbers #688

merged 3 commits into from
Feb 26, 2022

Conversation

vyasr
Copy link
Contributor

@vyasr vyasr commented Feb 24, 2022

Description

This PR changes schema versioning to use a integer version numbers rather than semantic versioning-style strings.

Motivation and Context

Version strings as used to denote different "levels" of changes are not really applicable to schema. There is no concept of a patch, and while in principle we could make backwards compatible minor changes in practice we only anticipate major-like changes. Switching to this scheme will avoid presenting this extra complexity as we introduce further migrations, and as a bonus it simplifies our internal migration logic. #684 contains more information.

Types of Changes

  • Documentation update
  • Bug fix
  • New feature
  • Breaking change1

1The change breaks (or has the potential to break) existing functionality.

Checklist:

If necessary:

  • I have updated the API documentation as part of the package doc-strings.
  • I have created a separate pull request to update the framework documentation on signac-docs and linked it here.
  • I have updated the changelog and added all related issue and pull request numbers for future reference (if applicable). See example below.

@vyasr vyasr added this to the v2.0.0 milestone Feb 24, 2022
@vyasr vyasr self-assigned this Feb 24, 2022
@vyasr vyasr requested review from a team as code owners February 24, 2022 16:53
@vyasr vyasr requested review from b-butler and Charlottez112 and removed request for a team February 24, 2022 16:53
@vyasr vyasr changed the title Schema version numbers Use integer schema version numbers Feb 24, 2022
@codecov
Copy link

codecov bot commented Feb 24, 2022

Codecov Report

Merging #688 (5f9ddce) into schema2 (01b5b53) will decrease coverage by 0.00%.
The diff coverage is 91.66%.

Impacted file tree graph

@@             Coverage Diff             @@
##           schema2     #688      +/-   ##
===========================================
- Coverage    86.29%   86.28%   -0.01%     
===========================================
  Files           52       52              
  Lines         5042     5040       -2     
  Branches      1102     1101       -1     
===========================================
- Hits          4351     4349       -2     
  Misses         489      489              
  Partials       202      202              
Impacted Files Coverage Δ
signac/contrib/migration/__init__.py 86.20% <88.88%> (-0.46%) ⬇️
signac/contrib/project.py 89.44% <100.00%> (ø)
signac/version.py 100.00% <100.00%> (ø)

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 01b5b53...5f9ddce. Read the comment docs.

@bdice bdice mentioned this pull request Feb 25, 2022
12 tasks
Co-authored-by: Bradley Dice <bdice@bradleydice.com>
@vyasr vyasr merged commit cf73d1c into schema2 Feb 26, 2022
@vyasr vyasr deleted the schema_version_numbers branch February 26, 2022 04:16
vyasr added a commit that referenced this pull request Mar 14, 2022
* 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>
vyasr added a commit that referenced this pull request Apr 14, 2022
* 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>
vyasr added a commit that referenced this pull request Apr 19, 2022
* 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>
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
* 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>
vyasr added a commit that referenced this pull request May 2, 2022
* 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>
bdice added a commit that referenced this pull request Jun 14, 2022
* 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>
bdice added a commit that referenced this pull request Aug 1, 2022
* 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>
bdice added a commit that referenced this pull request Oct 7, 2022
* 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>
bdice added a commit that referenced this pull request Oct 27, 2022
* 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>
vyasr added a commit that referenced this pull request Oct 30, 2022
* 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>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants