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 easily deprecated functions from project.py #574

Merged
merged 12 commits into from
Jul 28, 2021
Merged

Conversation

atravitz
Copy link
Collaborator

@atravitz atravitz commented Jul 19, 2021

Description

There's a considerable amount of code that is scheduled to be removed ahead of the signac 2.0 release.

Motivation and Context

This removes deprecated content from project.py that I felt confident could be removed safely. I will follow this up with another PR that will require some discussion before we delete code.

There are still some tests dependent on deprecated code, and so I'm making sure that the tests are being updated accordingly and that we aren't losing code coverage.

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
Copy link
Contributor

vyasr commented Jul 19, 2021

@atravitz I think we'll need to hold on this PR for at least one more thorough review of the code base. I can't think of them off the top of my head, but I'm quite sure that there are a number of functions scattered around that had not been deprecated yet but were considered for deprecation in 2.0. That means (unless I'm mistaken) that we'll need at least one more deprecation pass and one more minor release before 2.0.

I've been a bit swamped between work and lots of travel lately, but I will nominate myself to scope this out in the near future since I'm done traveling for about a month after this weekend and hopefully am wrapping up some major pushes at work.

@atravitz
Copy link
Collaborator Author

@atravitz I think we'll need to hold on this PR for at least one more thorough review of the code base. I can't think of them off the top of my head, but I'm quite sure that there are a number of functions scattered around that had not been deprecated yet but were considered for deprecation in 2.0. That means (unless I'm mistaken) that we'll need at least one more deprecation pass and one more minor release before 2.0.

I've been a bit swamped between work and lots of travel lately, but I will nominate myself to scope this out in the near future since I'm done traveling for about a month after this weekend and hopefully am wrapping up some major pushes at work.

Sounds good! I'm happy to help with that.

@atravitz atravitz changed the title removing deprecated code for signac 2.0 removing deprecated functions from project.py for signac 2.0 Jul 23, 2021
@atravitz atravitz changed the title removing deprecated functions from project.py for signac 2.0 Removing deprecated functions from project.py for signac 2.0 Jul 23, 2021
@atravitz atravitz changed the title Removing deprecated functions from project.py for signac 2.0 Remove deprecated functions from project.py for signac 2.0 Jul 23, 2021
@codecov
Copy link

codecov bot commented Jul 23, 2021

Codecov Report

❗ No coverage uploaded for pull request base (next@883f54f). Click here to learn what that means.
The diff coverage is n/a.

❗ Current head 348108c differs from pull request most recent head ae40887. Consider uploading reports for the commit ae40887 to get more accurate results
Impacted file tree graph

@@           Coverage Diff           @@
##             next     #574   +/-   ##
=======================================
  Coverage        ?   78.21%           
=======================================
  Files           ?       65           
  Lines           ?     7022           
  Branches        ?     1302           
=======================================
  Hits            ?     5492           
  Misses          ?     1230           
  Partials        ?      300           

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 883f54f...ae40887. Read the comment docs.

@atravitz atravitz changed the title Remove deprecated functions from project.py for signac 2.0 Remove easily deprecated functions from project.py for signac 2.0 Jul 23, 2021
@atravitz atravitz changed the title Remove easily deprecated functions from project.py for signac 2.0 Remove easily deprecated functions from project.py Jul 23, 2021
@atravitz atravitz requested review from bdice and vyasr July 23, 2021 23:26
@atravitz atravitz marked this pull request as ready for review July 23, 2021 23:41
@atravitz atravitz requested review from a team as code owners July 23, 2021 23:41
@atravitz atravitz requested review from pepak13 and removed request for a team July 23, 2021 23:41
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.

I'm pushing some minor changes to tests. Otherwise this looks good.

@@ -1535,20 +1531,18 @@ def test_reset_statepoint_project(self):
src_job.data[key] = d
assert key in src_job.data
assert len(src_job.data) == 1
with pytest.deprecated_call():
Copy link
Member

Choose a reason for hiding this comment

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

This test is now an exact duplicate of test_reset_statepoint_job. I removed it.

@@ -1064,8 +1064,7 @@ def test_reset_statepoint_project(self):
src_job.data[key] = d
assert key in src_job.data
assert len(src_job.data) == 1
with pytest.deprecated_call():
Copy link
Member

Choose a reason for hiding this comment

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

This test is now an exact duplicate of test_reset_statepoint_job. I removed it.

with pytest.deprecated_call():
assert self.project.get_id() == "testing_test_project"
assert str(self.project) == self.project.get_id()
def test_project_id(self):
Copy link
Member

Choose a reason for hiding this comment

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

This test is now an exact duplicate of test_property_id. I removed it.

assert 1 == len(list(self.project.find_job_ids({"sp.a": 0, "doc.b": 0})))
assert 0 == len(list(self.project.find_job_ids({"sp.a": 0, "doc.b": 5})))
assert 0 == len(list(self.project.find_job_ids({"sp.a": 5, "doc.b": 0})))
assert 0 == len(list(self.project.find_job_ids({"sp.a": 5, "doc.b": 5})))
Copy link
Member

Choose a reason for hiding this comment

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

There are some test cases for unified queries like {"sp.a": 5, "doc.b": 5} shown in this function that are not in test_find_jobs below. I moved those test cases to test_find_jobs so that we retain coverage of those code paths.

@bdice bdice added this to the v2.0.0 milestone Jul 24, 2021
@bdice
Copy link
Member

bdice commented Jul 24, 2021

This conversation about signac-flow support is somewhat relevant for this PR as well. I think signac-flow only calls project.get_id() in one location, which we can easily replace.
#578 (comment)

vyasr pushed a commit that referenced this pull request Dec 25, 2021
* beginning to pull out deprecated from project.py

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

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

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

This reverts commit 4e52a01.

* Revert "beginning to pull out deprecated from project.py"

This reverts commit 5f30ef4.

* removing deprecated get_id()

* removing deprecated get_id() from project.py

* updating more instances of project.get_id()

* removing index building methods

* removing access module and reset/update statepoint from project.py

* Simplify benchmark setup code for readability (no observed impact on benchmark times).

* Remove tests that are exact duplicates.

* Add missing test cases for test_find_jobs from the removed function test_find_job_ids.

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Bradley Dice <bdice@bradleydice.com>
vyasr pushed a commit that referenced this pull request Jan 4, 2022
* beginning to pull out deprecated from project.py

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

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

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

This reverts commit 4e52a01.

* Revert "beginning to pull out deprecated from project.py"

This reverts commit 5f30ef4.

* removing deprecated get_id()

* removing deprecated get_id() from project.py

* updating more instances of project.get_id()

* removing index building methods

* removing access module and reset/update statepoint from project.py

* Simplify benchmark setup code for readability (no observed impact on benchmark times).

* Remove tests that are exact duplicates.

* Add missing test cases for test_find_jobs from the removed function test_find_job_ids.

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Bradley Dice <bdice@bradleydice.com>
vyasr pushed a commit that referenced this pull request Jan 27, 2022
* beginning to pull out deprecated from project.py

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

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

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

This reverts commit 4e52a01.

* Revert "beginning to pull out deprecated from project.py"

This reverts commit 5f30ef4.

* removing deprecated get_id()

* removing deprecated get_id() from project.py

* updating more instances of project.get_id()

* removing index building methods

* removing access module and reset/update statepoint from project.py

* Simplify benchmark setup code for readability (no observed impact on benchmark times).

* Remove tests that are exact duplicates.

* Add missing test cases for test_find_jobs from the removed function test_find_job_ids.

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Bradley Dice <bdice@bradleydice.com>
vyasr pushed a commit that referenced this pull request Feb 4, 2022
* beginning to pull out deprecated from project.py

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

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

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

This reverts commit 4e52a01.

* Revert "beginning to pull out deprecated from project.py"

This reverts commit 5f30ef4.

* removing deprecated get_id()

* removing deprecated get_id() from project.py

* updating more instances of project.get_id()

* removing index building methods

* removing access module and reset/update statepoint from project.py

* Simplify benchmark setup code for readability (no observed impact on benchmark times).

* Remove tests that are exact duplicates.

* Add missing test cases for test_find_jobs from the removed function test_find_job_ids.

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Bradley Dice <bdice@bradleydice.com>
vyasr pushed a commit that referenced this pull request Feb 21, 2022
* beginning to pull out deprecated from project.py

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

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

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

This reverts commit 4e52a01.

* Revert "beginning to pull out deprecated from project.py"

This reverts commit 5f30ef4.

* removing deprecated get_id()

* removing deprecated get_id() from project.py

* updating more instances of project.get_id()

* removing index building methods

* removing access module and reset/update statepoint from project.py

* Simplify benchmark setup code for readability (no observed impact on benchmark times).

* Remove tests that are exact duplicates.

* Add missing test cases for test_find_jobs from the removed function test_find_job_ids.

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Bradley Dice <bdice@bradleydice.com>
vyasr pushed a commit that referenced this pull request Mar 14, 2022
* beginning to pull out deprecated from project.py

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

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

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

This reverts commit 4e52a01.

* Revert "beginning to pull out deprecated from project.py"

This reverts commit 5f30ef4.

* removing deprecated get_id()

* removing deprecated get_id() from project.py

* updating more instances of project.get_id()

* removing index building methods

* removing access module and reset/update statepoint from project.py

* Simplify benchmark setup code for readability (no observed impact on benchmark times).

* Remove tests that are exact duplicates.

* Add missing test cases for test_find_jobs from the removed function test_find_job_ids.

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Bradley Dice <bdice@bradleydice.com>
vyasr pushed a commit that referenced this pull request Apr 19, 2022
* beginning to pull out deprecated from project.py

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

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

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

This reverts commit 4e52a01.

* Revert "beginning to pull out deprecated from project.py"

This reverts commit 5f30ef4.

* removing deprecated get_id()

* removing deprecated get_id() from project.py

* updating more instances of project.get_id()

* removing index building methods

* removing access module and reset/update statepoint from project.py

* Simplify benchmark setup code for readability (no observed impact on benchmark times).

* Remove tests that are exact duplicates.

* Add missing test cases for test_find_jobs from the removed function test_find_job_ids.

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Bradley Dice <bdice@bradleydice.com>
vyasr pushed a commit that referenced this pull request Apr 21, 2022
* beginning to pull out deprecated from project.py

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

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

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

This reverts commit 4e52a01.

* Revert "beginning to pull out deprecated from project.py"

This reverts commit 5f30ef4.

* removing deprecated get_id()

* removing deprecated get_id() from project.py

* updating more instances of project.get_id()

* removing index building methods

* removing access module and reset/update statepoint from project.py

* Simplify benchmark setup code for readability (no observed impact on benchmark times).

* Remove tests that are exact duplicates.

* Add missing test cases for test_find_jobs from the removed function test_find_job_ids.

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Bradley Dice <bdice@bradleydice.com>
vyasr pushed a commit that referenced this pull request May 2, 2022
* beginning to pull out deprecated from project.py

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

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

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

This reverts commit 4e52a01.

* Revert "beginning to pull out deprecated from project.py"

This reverts commit 5f30ef4.

* removing deprecated get_id()

* removing deprecated get_id() from project.py

* updating more instances of project.get_id()

* removing index building methods

* removing access module and reset/update statepoint from project.py

* Simplify benchmark setup code for readability (no observed impact on benchmark times).

* Remove tests that are exact duplicates.

* Add missing test cases for test_find_jobs from the removed function test_find_job_ids.

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Bradley Dice <bdice@bradleydice.com>
bdice added a commit that referenced this pull request Jun 14, 2022
* beginning to pull out deprecated from project.py

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

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

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

This reverts commit 4e52a01.

* Revert "beginning to pull out deprecated from project.py"

This reverts commit 5f30ef4.

* removing deprecated get_id()

* removing deprecated get_id() from project.py

* updating more instances of project.get_id()

* removing index building methods

* removing access module and reset/update statepoint from project.py

* Simplify benchmark setup code for readability (no observed impact on benchmark times).

* Remove tests that are exact duplicates.

* Add missing test cases for test_find_jobs from the removed function test_find_job_ids.

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Bradley Dice <bdice@bradleydice.com>
bdice added a commit that referenced this pull request Aug 1, 2022
* beginning to pull out deprecated from project.py

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

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

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

This reverts commit 4e52a01.

* Revert "beginning to pull out deprecated from project.py"

This reverts commit 5f30ef4.

* removing deprecated get_id()

* removing deprecated get_id() from project.py

* updating more instances of project.get_id()

* removing index building methods

* removing access module and reset/update statepoint from project.py

* Simplify benchmark setup code for readability (no observed impact on benchmark times).

* Remove tests that are exact duplicates.

* Add missing test cases for test_find_jobs from the removed function test_find_job_ids.

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Bradley Dice <bdice@bradleydice.com>
bdice added a commit that referenced this pull request Oct 7, 2022
* beginning to pull out deprecated from project.py

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

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

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

This reverts commit 4e52a01.

* Revert "beginning to pull out deprecated from project.py"

This reverts commit 5f30ef4.

* removing deprecated get_id()

* removing deprecated get_id() from project.py

* updating more instances of project.get_id()

* removing index building methods

* removing access module and reset/update statepoint from project.py

* Simplify benchmark setup code for readability (no observed impact on benchmark times).

* Remove tests that are exact duplicates.

* Add missing test cases for test_find_jobs from the removed function test_find_job_ids.

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Bradley Dice <bdice@bradleydice.com>
bdice added a commit that referenced this pull request Oct 27, 2022
* beginning to pull out deprecated from project.py

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

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

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

This reverts commit 4e52a01.

* Revert "beginning to pull out deprecated from project.py"

This reverts commit 5f30ef4.

* removing deprecated get_id()

* removing deprecated get_id() from project.py

* updating more instances of project.get_id()

* removing index building methods

* removing access module and reset/update statepoint from project.py

* Simplify benchmark setup code for readability (no observed impact on benchmark times).

* Remove tests that are exact duplicates.

* Add missing test cases for test_find_jobs from the removed function test_find_job_ids.

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Bradley Dice <bdice@bradleydice.com>
vyasr pushed a commit that referenced this pull request Oct 30, 2022
* beginning to pull out deprecated from project.py

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

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

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

This reverts commit 4e52a01.

* Revert "beginning to pull out deprecated from project.py"

This reverts commit 5f30ef4.

* removing deprecated get_id()

* removing deprecated get_id() from project.py

* updating more instances of project.get_id()

* removing index building methods

* removing access module and reset/update statepoint from project.py

* Simplify benchmark setup code for readability (no observed impact on benchmark times).

* Remove tests that are exact duplicates.

* Add missing test cases for test_find_jobs from the removed function test_find_job_ids.

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.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.

3 participants