Skip to content

Commit

Permalink
Rename applications_superstaq to general_superstaq (#41)
Browse files Browse the repository at this point in the history
* renamed check files and added DS_Store to gitignore

* delete last new line in gitignore

* update css and qss version and also pinned cirq to 0.15.0
  • Loading branch information
stephanielee9 authored Jul 29, 2022
1 parent 020f1cb commit d6df4dd
Show file tree
Hide file tree
Showing 11 changed files with 23 additions and 19 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -148,3 +148,6 @@ _site
.jekyll-cache
.jekyll-metadata
vendor

# MacOS
.DS_Store
4 changes: 2 additions & 2 deletions check/all_.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import sys

import applications_superstaq.check
import general_superstaq.check

if __name__ == "__main__":
exit(applications_superstaq.check.all_.run(*sys.argv[1:]))
exit(general_superstaq.check.all_.run(*sys.argv[1:]))
4 changes: 2 additions & 2 deletions check/coverage_.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import sys

import applications_superstaq.check
import general_superstaq.check

if __name__ == "__main__":
exit(applications_superstaq.check.coverage_.run(*sys.argv[1:]))
exit(general_superstaq.check.coverage_.run(*sys.argv[1:]))
4 changes: 2 additions & 2 deletions check/flake8_.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import sys

import applications_superstaq.check
import general_superstaq.check

if __name__ == "__main__":
exit(applications_superstaq.check.flake8_.run(*sys.argv[1:]))
exit(general_superstaq.check.flake8_.run(*sys.argv[1:]))
4 changes: 2 additions & 2 deletions check/format_.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import sys

import applications_superstaq.check
import general_superstaq.check

if __name__ == "__main__":
exit(applications_superstaq.check.format_.run(*sys.argv[1:]))
exit(general_superstaq.check.format_.run(*sys.argv[1:]))
4 changes: 2 additions & 2 deletions check/mypy_.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import sys

import applications_superstaq.check
import general_superstaq.check

if __name__ == "__main__":
exit(applications_superstaq.check.mypy_.run(*sys.argv[1:]))
exit(general_superstaq.check.mypy_.run(*sys.argv[1:]))
4 changes: 2 additions & 2 deletions check/pylint_.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import sys

import applications_superstaq.check
import general_superstaq.check

if __name__ == "__main__":
exit(applications_superstaq.check.pylint_.run(*sys.argv[1:]))
exit(general_superstaq.check.pylint_.run(*sys.argv[1:]))
4 changes: 2 additions & 2 deletions check/pytest_.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import sys

import applications_superstaq.check
import general_superstaq.check

if __name__ == "__main__":
exit(applications_superstaq.check.pytest_.run(*sys.argv[1:]))
exit(general_superstaq.check.pytest_.run(*sys.argv[1:]))
4 changes: 2 additions & 2 deletions check/requirements.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import sys

import applications_superstaq.check
import general_superstaq.check

if __name__ == "__main__":
exit(applications_superstaq.check.requirements.run(*sys.argv[1:]))
exit(general_superstaq.check.requirements.run(*sys.argv[1:]))
2 changes: 1 addition & 1 deletion dev-requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
applications-superstaq[dev]==0.1.15
general-superstaq[dev]==0.2.0
5 changes: 3 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
cirq-superstaq==0.1.30
qiskit-superstaq==0.1.24
cirq-superstaq==0.2.0
cirq~=0.15.0
qiskit-superstaq==0.2.0
scikit-learn~=1.1.1

0 comments on commit d6df4dd

Please sign in to comment.