chemsmart 0.1.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- chemsmart-0.1.0/CHANGELOG.md +904 -0
- chemsmart-0.1.0/LICENSE +674 -0
- chemsmart-0.1.0/LICENSE.LESSER +165 -0
- chemsmart-0.1.0/MANIFEST.in +5 -0
- chemsmart-0.1.0/PKG-INFO +1210 -0
- chemsmart-0.1.0/README.md +496 -0
- chemsmart-0.1.0/chemsmart/__init__.py +0 -0
- chemsmart-0.1.0/chemsmart/cli/__init__.py +0 -0
- chemsmart-0.1.0/chemsmart/cli/config.py +301 -0
- chemsmart-0.1.0/chemsmart/cli/gaussian/__init__.py +41 -0
- chemsmart-0.1.0/chemsmart/cli/gaussian/com.py +51 -0
- chemsmart-0.1.0/chemsmart/cli/gaussian/crest.py +78 -0
- chemsmart-0.1.0/chemsmart/cli/gaussian/crestopt.py +57 -0
- chemsmart-0.1.0/chemsmart/cli/gaussian/crestts.py +57 -0
- chemsmart-0.1.0/chemsmart/cli/gaussian/custom.py +62 -0
- chemsmart-0.1.0/chemsmart/cli/gaussian/dias.py +77 -0
- chemsmart-0.1.0/chemsmart/cli/gaussian/gaussian.py +411 -0
- chemsmart-0.1.0/chemsmart/cli/gaussian/irc.py +132 -0
- chemsmart-0.1.0/chemsmart/cli/gaussian/link.py +98 -0
- chemsmart-0.1.0/chemsmart/cli/gaussian/modred.py +56 -0
- chemsmart-0.1.0/chemsmart/cli/gaussian/nci.py +45 -0
- chemsmart-0.1.0/chemsmart/cli/gaussian/opt.py +69 -0
- chemsmart-0.1.0/chemsmart/cli/gaussian/resp.py +50 -0
- chemsmart-0.1.0/chemsmart/cli/gaussian/saopt.py +125 -0
- chemsmart-0.1.0/chemsmart/cli/gaussian/scan.py +56 -0
- chemsmart-0.1.0/chemsmart/cli/gaussian/singlepoint.py +75 -0
- chemsmart-0.1.0/chemsmart/cli/gaussian/tddft.py +56 -0
- chemsmart-0.1.0/chemsmart/cli/gaussian/ts.py +73 -0
- chemsmart-0.1.0/chemsmart/cli/gaussian/wbi.py +47 -0
- chemsmart-0.1.0/chemsmart/cli/job.py +21 -0
- chemsmart-0.1.0/chemsmart/cli/jobrunner.py +49 -0
- chemsmart-0.1.0/chemsmart/cli/logger.py +25 -0
- chemsmart-0.1.0/chemsmart/cli/main.py +54 -0
- chemsmart-0.1.0/chemsmart/cli/orca/__init__.py +19 -0
- chemsmart-0.1.0/chemsmart/cli/orca/inp.py +23 -0
- chemsmart-0.1.0/chemsmart/cli/orca/irc.py +254 -0
- chemsmart-0.1.0/chemsmart/cli/orca/modred.py +52 -0
- chemsmart-0.1.0/chemsmart/cli/orca/opt.py +77 -0
- chemsmart-0.1.0/chemsmart/cli/orca/orca.py +429 -0
- chemsmart-0.1.0/chemsmart/cli/orca/scan.py +50 -0
- chemsmart-0.1.0/chemsmart/cli/orca/singlepoint.py +48 -0
- chemsmart-0.1.0/chemsmart/cli/orca/ts.py +170 -0
- chemsmart-0.1.0/chemsmart/cli/run.py +106 -0
- chemsmart-0.1.0/chemsmart/cli/sub.py +152 -0
- chemsmart-0.1.0/chemsmart/cli/subcommands.py +7 -0
- chemsmart-0.1.0/chemsmart/cli/update.py +150 -0
- chemsmart-0.1.0/chemsmart/io/converter.py +121 -0
- chemsmart-0.1.0/chemsmart/io/gaussian/__init__.py +156 -0
- chemsmart-0.1.0/chemsmart/io/gaussian/cube.py +266 -0
- chemsmart-0.1.0/chemsmart/io/gaussian/folder.py +76 -0
- chemsmart-0.1.0/chemsmart/io/gaussian/gengenecp.py +222 -0
- chemsmart-0.1.0/chemsmart/io/gaussian/input.py +214 -0
- chemsmart-0.1.0/chemsmart/io/gaussian/output.py +1643 -0
- chemsmart-0.1.0/chemsmart/io/gaussian/route.py +266 -0
- chemsmart-0.1.0/chemsmart/io/molecules/__init__.py +60 -0
- chemsmart-0.1.0/chemsmart/io/molecules/atoms.py +40 -0
- chemsmart-0.1.0/chemsmart/io/molecules/dataset.py +0 -0
- chemsmart-0.1.0/chemsmart/io/molecules/pubchem.py +171 -0
- chemsmart-0.1.0/chemsmart/io/molecules/structure.py +1107 -0
- chemsmart-0.1.0/chemsmart/io/orca/__init__.py +1168 -0
- chemsmart-0.1.0/chemsmart/io/orca/blocks.py +276 -0
- chemsmart-0.1.0/chemsmart/io/orca/folder.py +81 -0
- chemsmart-0.1.0/chemsmart/io/orca/input.py +142 -0
- chemsmart-0.1.0/chemsmart/io/orca/output.py +1947 -0
- chemsmart-0.1.0/chemsmart/io/orca/route.py +117 -0
- chemsmart-0.1.0/chemsmart/io/organizer.py +143 -0
- chemsmart-0.1.0/chemsmart/io/xyz/file.py +58 -0
- chemsmart-0.1.0/chemsmart/io/xyz/folder.py +22 -0
- chemsmart-0.1.0/chemsmart/io/yaml.py +10 -0
- chemsmart-0.1.0/chemsmart/jobs/gaussian/__init__.py +60 -0
- chemsmart-0.1.0/chemsmart/jobs/gaussian/crest.py +89 -0
- chemsmart-0.1.0/chemsmart/jobs/gaussian/crestopt.py +78 -0
- chemsmart-0.1.0/chemsmart/jobs/gaussian/crestts.py +78 -0
- chemsmart-0.1.0/chemsmart/jobs/gaussian/custom.py +10 -0
- chemsmart-0.1.0/chemsmart/jobs/gaussian/dias.py +144 -0
- chemsmart-0.1.0/chemsmart/jobs/gaussian/irc.py +97 -0
- chemsmart-0.1.0/chemsmart/jobs/gaussian/job.py +203 -0
- chemsmart-0.1.0/chemsmart/jobs/gaussian/link.py +17 -0
- chemsmart-0.1.0/chemsmart/jobs/gaussian/modred.py +10 -0
- chemsmart-0.1.0/chemsmart/jobs/gaussian/nci.py +12 -0
- chemsmart-0.1.0/chemsmart/jobs/gaussian/opt.py +10 -0
- chemsmart-0.1.0/chemsmart/jobs/gaussian/resp.py +14 -0
- chemsmart-0.1.0/chemsmart/jobs/gaussian/runner.py +410 -0
- chemsmart-0.1.0/chemsmart/jobs/gaussian/saopt.py +156 -0
- chemsmart-0.1.0/chemsmart/jobs/gaussian/scan.py +10 -0
- chemsmart-0.1.0/chemsmart/jobs/gaussian/settings.py +635 -0
- chemsmart-0.1.0/chemsmart/jobs/gaussian/singlepoint.py +10 -0
- chemsmart-0.1.0/chemsmart/jobs/gaussian/tddft.py +17 -0
- chemsmart-0.1.0/chemsmart/jobs/gaussian/ts.py +10 -0
- chemsmart-0.1.0/chemsmart/jobs/gaussian/uvvis.py +57 -0
- chemsmart-0.1.0/chemsmart/jobs/gaussian/wbi.py +12 -0
- chemsmart-0.1.0/chemsmart/jobs/gaussian/writer.py +258 -0
- chemsmart-0.1.0/chemsmart/jobs/job.py +143 -0
- chemsmart-0.1.0/chemsmart/jobs/orca/__init__.py +25 -0
- chemsmart-0.1.0/chemsmart/jobs/orca/irc.py +14 -0
- chemsmart-0.1.0/chemsmart/jobs/orca/job.py +242 -0
- chemsmart-0.1.0/chemsmart/jobs/orca/modred.py +10 -0
- chemsmart-0.1.0/chemsmart/jobs/orca/opt.py +10 -0
- chemsmart-0.1.0/chemsmart/jobs/orca/runner.py +337 -0
- chemsmart-0.1.0/chemsmart/jobs/orca/scan.py +10 -0
- chemsmart-0.1.0/chemsmart/jobs/orca/settings.py +614 -0
- chemsmart-0.1.0/chemsmart/jobs/orca/singlepoint.py +10 -0
- chemsmart-0.1.0/chemsmart/jobs/orca/ts.py +10 -0
- chemsmart-0.1.0/chemsmart/jobs/orca/writer.py +451 -0
- chemsmart-0.1.0/chemsmart/jobs/runner.py +205 -0
- chemsmart-0.1.0/chemsmart/jobs/settings.py +230 -0
- chemsmart-0.1.0/chemsmart/jobs/writer.py +23 -0
- chemsmart-0.1.0/chemsmart/scripts/cube_operation.py +57 -0
- chemsmart-0.1.0/chemsmart/scripts/file_converter.py +64 -0
- chemsmart-0.1.0/chemsmart/scripts/file_organizer.py +92 -0
- chemsmart-0.1.0/chemsmart/scripts/fmo.py +56 -0
- chemsmart-0.1.0/chemsmart/scripts/fukui.py +180 -0
- chemsmart-0.1.0/chemsmart/scripts/hirshfeld.py +74 -0
- chemsmart-0.1.0/chemsmart/scripts/mulliken.py +74 -0
- chemsmart-0.1.0/chemsmart/scripts/structure_filter.py +132 -0
- chemsmart-0.1.0/chemsmart/scripts/submit_jobs.py +57 -0
- chemsmart-0.1.0/chemsmart/scripts/wbi_analysis.py +59 -0
- chemsmart-0.1.0/chemsmart/scripts/write_xyz.py +49 -0
- chemsmart-0.1.0/chemsmart/settings/__init__.py +0 -0
- chemsmart-0.1.0/chemsmart/settings/executable.py +131 -0
- chemsmart-0.1.0/chemsmart/settings/gaussian.py +289 -0
- chemsmart-0.1.0/chemsmart/settings/orca.py +289 -0
- chemsmart-0.1.0/chemsmart/settings/server.py +407 -0
- chemsmart-0.1.0/chemsmart/settings/submitters.py +334 -0
- chemsmart-0.1.0/chemsmart/settings/user.py +109 -0
- chemsmart-0.1.0/chemsmart/utils/cli.py +294 -0
- chemsmart-0.1.0/chemsmart/utils/cluster.py +113 -0
- chemsmart-0.1.0/chemsmart/utils/grouper.py +635 -0
- chemsmart-0.1.0/chemsmart/utils/logger.py +92 -0
- chemsmart-0.1.0/chemsmart/utils/mixins.py +558 -0
- chemsmart-0.1.0/chemsmart/utils/periodictable.py +33 -0
- chemsmart-0.1.0/chemsmart/utils/repattern.py +43 -0
- chemsmart-0.1.0/chemsmart/utils/utils.py +629 -0
- chemsmart-0.1.0/chemsmart.egg-info/PKG-INFO +1210 -0
- chemsmart-0.1.0/chemsmart.egg-info/SOURCES.txt +152 -0
- chemsmart-0.1.0/chemsmart.egg-info/dependency_links.txt +1 -0
- chemsmart-0.1.0/chemsmart.egg-info/requires.txt +25 -0
- chemsmart-0.1.0/chemsmart.egg-info/top_level.txt +4 -0
- chemsmart-0.1.0/pyproject.toml +88 -0
- chemsmart-0.1.0/setup.cfg +4 -0
- chemsmart-0.1.0/tests/__init__.py +0 -0
- chemsmart-0.1.0/tests/conftest.py +791 -0
- chemsmart-0.1.0/tests/test_GaussianGenECP.py +102 -0
- chemsmart-0.1.0/tests/test_GaussianIO.py +1512 -0
- chemsmart-0.1.0/tests/test_GaussianSettings.py +231 -0
- chemsmart-0.1.0/tests/test_GaussianWriter.py +516 -0
- chemsmart-0.1.0/tests/test_ORCAIO.py +1797 -0
- chemsmart-0.1.0/tests/test_YAMLIO.py +24 -0
- chemsmart-0.1.0/tests/test_converter.py +172 -0
- chemsmart-0.1.0/tests/test_groupers.py +426 -0
- chemsmart-0.1.0/tests/test_organizer.py +13 -0
- chemsmart-0.1.0/tests/test_server.py +72 -0
- chemsmart-0.1.0/tests/test_structures.py +1057 -0
- chemsmart-0.1.0/tests/test_utils.py +247 -0
|
@@ -0,0 +1,904 @@
|
|
|
1
|
+
Changelog
|
|
2
|
+
=========
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
(unreleased)
|
|
6
|
+
------------
|
|
7
|
+
- Clean up make fmt and make lint in Makefile. [xinglong-zhang]
|
|
8
|
+
- Added comments to the codes. [xinglong-zhang]
|
|
9
|
+
- Further fix. [xinglong-zhang]
|
|
10
|
+
- Fix basis. [xinglong-zhang]
|
|
11
|
+
- Modify route string in writer, if project setting uses heavy elements
|
|
12
|
+
but molecule has no heavy elements. [xinglong-zhang]
|
|
13
|
+
- Merge pull request #92 from xinglong-zhang/readme. [Xinglong Zhang]
|
|
14
|
+
|
|
15
|
+
use conda
|
|
16
|
+
- Merge branch 'main' into readme. [Xinglong Zhang]
|
|
17
|
+
- Merge pull request #91 from xinglong-zhang/mf. [Xinglong Zhang]
|
|
18
|
+
|
|
19
|
+
update Makefile to use path to chemsmart exe
|
|
20
|
+
- Update Makefile to use path to chemsmart exe. [xinglong-zhang]
|
|
21
|
+
- Merge pull request #90 from xinglong-zhang/xinglong-zhang-patch-5.
|
|
22
|
+
[Xinglong Zhang]
|
|
23
|
+
|
|
24
|
+
Update README.md
|
|
25
|
+
- Update README.md. [Xinglong Zhang]
|
|
26
|
+
- Merge pull request #88 from xinglong-zhang/mf. [Xinglong Zhang]
|
|
27
|
+
|
|
28
|
+
Fix makefile
|
|
29
|
+
- Merge branch 'main' into mf. [Xinglong Zhang]
|
|
30
|
+
- Merge pull request #89 from xinglong-zhang/xinglong-zhang-patch-4.
|
|
31
|
+
[Xinglong Zhang]
|
|
32
|
+
|
|
33
|
+
Update Makefile
|
|
34
|
+
- Update Makefile. [Xinglong Zhang]
|
|
35
|
+
- Merge pull request #87 from xinglong-zhang/xinglong-zhang-patch-3.
|
|
36
|
+
[Xinglong Zhang]
|
|
37
|
+
|
|
38
|
+
Update README.md
|
|
39
|
+
- Update README.md. [Xinglong Zhang]
|
|
40
|
+
- Merge pull request #86 from xinglong-zhang/readme. [Xinglong Zhang]
|
|
41
|
+
|
|
42
|
+
Readme
|
|
43
|
+
- Update make file. [xinglong-zhang]
|
|
44
|
+
- Fix Makefile. [xinglong-zhang]
|
|
45
|
+
- Clean Makefile. [xinglong-zhang]
|
|
46
|
+
- Use conda. [Zhang Xinglong]
|
|
47
|
+
- Merge branch 'main' into readme. [Zhang Xinglong]
|
|
48
|
+
- Merge pull request #84 from xinglong-zhang/readme. [Xinglong Zhang]
|
|
49
|
+
|
|
50
|
+
updated Makefile to remove poetry
|
|
51
|
+
- Merge pull request #85 from xinglong-zhang/xinglong-zhang-patch-2.
|
|
52
|
+
[Xinglong Zhang]
|
|
53
|
+
|
|
54
|
+
Update README.md
|
|
55
|
+
- Update README.md. [Xinglong Zhang]
|
|
56
|
+
- Merge pull request #82 from xinglong-zhang/xinglong-zhang-patch-1.
|
|
57
|
+
[Xinglong Zhang]
|
|
58
|
+
|
|
59
|
+
Update README.md
|
|
60
|
+
- Update README.md. [Xinglong Zhang]
|
|
61
|
+
- Merge pull request #83 from xinglong-zhang/readme. [Xinglong Zhang]
|
|
62
|
+
|
|
63
|
+
fix Makefile to use conda
|
|
64
|
+
- Merge pull request #81 from xinglong-zhang/orca. [Xinglong Zhang]
|
|
65
|
+
|
|
66
|
+
renamed program_type to program
|
|
67
|
+
- Logger defults to no-stream. [xinglong-zhang]
|
|
68
|
+
- Renamed program_type to program. [xinglong-zhang]
|
|
69
|
+
- Merge pull request #80 from xinglong-zhang/readme. [Xinglong Zhang]
|
|
70
|
+
|
|
71
|
+
Updated Makefile
|
|
72
|
+
- Merge pull request #79 from xinglong-zhang/xinglong-zhang-patch-1.
|
|
73
|
+
[Xinglong Zhang]
|
|
74
|
+
|
|
75
|
+
Update README.md
|
|
76
|
+
- Update README.md. [Xinglong Zhang]
|
|
77
|
+
- Merge pull request #78 from xinglong-zhang/readme. [Xinglong Zhang]
|
|
78
|
+
- Merge pull request #77 from xinglong-zhang/readme. [Xinglong Zhang]
|
|
79
|
+
|
|
80
|
+
updated readme
|
|
81
|
+
- Merge pull request #75 from xinglong-zhang/readme. [Xinglong Zhang]
|
|
82
|
+
|
|
83
|
+
added LGPL license
|
|
84
|
+
- Merge pull request #74 from xinglong-zhang/xinglong-zhang-patch-1.
|
|
85
|
+
[Xinglong Zhang]
|
|
86
|
+
|
|
87
|
+
Update LICENSE
|
|
88
|
+
- Update LICENSE. [Xinglong Zhang]
|
|
89
|
+
- Merge pull request #73 from xinglong-zhang/readme. [Xinglong Zhang]
|
|
90
|
+
- Relax setuptools version. [Zhang Xinglong]
|
|
91
|
+
- Updated Makefile to remove poetry. [Zhang Xinglong]
|
|
92
|
+
- Fix Makefile to use conda. [Zhang Xinglong]
|
|
93
|
+
- Chemsmart config. [Xinglong Zhang]
|
|
94
|
+
- Fix config ctx. [Xinglong Zhang]
|
|
95
|
+
- Config as a class. [Xinglong Zhang]
|
|
96
|
+
- Updated readme for installation instructions. [Xinglong Zhang]
|
|
97
|
+
- Added a simple configuration script for configuring chemsmart.
|
|
98
|
+
[Xinglong Zhang]
|
|
99
|
+
- Added .chemsmart to chemsmart/settings/templates/.chemsmart. [Xinglong
|
|
100
|
+
Zhang]
|
|
101
|
+
- Updated readme. [Xinglong Zhang]
|
|
102
|
+
- Added LGPL license. [Xinglong Zhang]
|
|
103
|
+
- Updated readme. [Xinglong Zhang]
|
|
104
|
+
- Merge pull request #72 from xinglong-zhang/conda. [Xinglong Zhang]
|
|
105
|
+
|
|
106
|
+
remove poetry.lock
|
|
107
|
+
- Remove poetry.lock. [Xinglong Zhang]
|
|
108
|
+
- Merge pull request #71 from xinglong-zhang/conda. [Xinglong Zhang]
|
|
109
|
+
- Updated Makefile, which works for installing the package via make +
|
|
110
|
+
updated dependencies versions in pyproject.tmol file. [Xinglong Zhang]
|
|
111
|
+
- Merge pull request #41 from xinglong-zhang/gaussian. [Xinglong Zhang]
|
|
112
|
+
- Merge pull request #70 from xinglong-zhang/orca. [Xinglong Zhang]
|
|
113
|
+
|
|
114
|
+
fix Make file to generate coverage report
|
|
115
|
+
- Fix Make file to generate coverage report. [Xinglong Zhang]
|
|
116
|
+
- Merge pull request #69 from xinglong-zhang/orca. [Xinglong Zhang]
|
|
117
|
+
|
|
118
|
+
Use --cov= to not do any source filtering and record everything
|
|
119
|
+
- Use --cov= to not do any source filtering and record everything.
|
|
120
|
+
[Xinglong Zhang]
|
|
121
|
+
- Merge pull request #68 from xinglong-zhang/orca. [Xinglong Zhang]
|
|
122
|
+
|
|
123
|
+
added cmp_with_ignore() function to utils + test for this function
|
|
124
|
+
- Added cmp_with_ignore() function to utils + test for this function.
|
|
125
|
+
[Xinglong Zhang]
|
|
126
|
+
- Merge pull request #67 from xinglong-zhang/orca. [Xinglong Zhang]
|
|
127
|
+
|
|
128
|
+
added cmp_with_ignore() function to utils.utils.py
|
|
129
|
+
- Added # compare the written input file with the expected input
|
|
130
|
+
file, except. [Xinglong Zhang]
|
|
131
|
+
- Merge pull request #66 from xinglong-zhang/orca. [Xinglong Zhang]
|
|
132
|
+
|
|
133
|
+
added filecmp.clear_cache()
|
|
134
|
+
- Added filecmp.clear_cache() [Xinglong Zhang]
|
|
135
|
+
- Merge pull request #65 from xinglong-zhang/orca. [Xinglong Zhang]
|
|
136
|
+
|
|
137
|
+
fix indexing + tests
|
|
138
|
+
- Fix indices + tests + black formatting. [Xinglong Zhang]
|
|
139
|
+
- Help strings. [Xinglong Zhang]
|
|
140
|
+
- Merge pull request #64 from xinglong-zhang/orca. [Xinglong Zhang]
|
|
141
|
+
|
|
142
|
+
indices fix
|
|
143
|
+
- Fix indices to use 1-based string2index_1based and
|
|
144
|
+
get_list_from_string_range. [Xinglong Zhang]
|
|
145
|
+
- Fix GaussianCrestJob. [Xinglong Zhang]
|
|
146
|
+
- Cmp to take shallow=False to compare file contents. [Xinglong Zhang]
|
|
147
|
+
- Remove print statements. [Xinglong Zhang]
|
|
148
|
+
- Merge pull request #63 from xinglong-zhang/orca. [Xinglong Zhang]
|
|
149
|
+
|
|
150
|
+
remove print statements
|
|
151
|
+
- Remove print statements. [Xinglong Zhang]
|
|
152
|
+
- Merge pull request #62 from xinglong-zhang/orca. [Xinglong Zhang]
|
|
153
|
+
|
|
154
|
+
added log files
|
|
155
|
+
- Readme. [Xinglong Zhang]
|
|
156
|
+
- Added log files; remove *.log from .gitignore. [Xinglong Zhang]
|
|
157
|
+
- Merge pull request #61 from xinglong-zhang/orca. [Xinglong Zhang]
|
|
158
|
+
|
|
159
|
+
added .log files to orca branch
|
|
160
|
+
- Update Makefile remove cov= from it. [Xinglong Zhang]
|
|
161
|
+
- Merge pull request #60 from xinglong-zhang/orca. [Xinglong Zhang]
|
|
162
|
+
|
|
163
|
+
modified .github/workflows/main.yml and Makefile
|
|
164
|
+
- Modified .github/workflows/main.yml and Makefile. [Xinglong Zhang]
|
|
165
|
+
- Merge pull request #59 from xinglong-zhang/orca. [Xinglong Zhang]
|
|
166
|
+
|
|
167
|
+
comment out token generation in .github/workflows/main.yml
|
|
168
|
+
- Comment out token generation in .github/workflows/main.yml. [Xinglong
|
|
169
|
+
Zhang]
|
|
170
|
+
- Merge pull request #58 from xinglong-zhang/orca. [Xinglong Zhang]
|
|
171
|
+
|
|
172
|
+
modified .github/workflows/main.yml and Makefile
|
|
173
|
+
- Modified .github/workflows/main.yml and Makefile. [Xinglong Zhang]
|
|
174
|
+
- Merge pull request #57 from xinglong-zhang/orca. [Xinglong Zhang]
|
|
175
|
+
|
|
176
|
+
change chemsmart/tests back to tests
|
|
177
|
+
- Change chemsmart/tests back to tests. [Xinglong Zhang]
|
|
178
|
+
- Merge pull request #56 from xinglong-zhang/orca. [Xinglong Zhang]
|
|
179
|
+
|
|
180
|
+
change tests to chemsmart/tests for pytest
|
|
181
|
+
- Change tests to chemsmart/tests for pytest. [Xinglong Zhang]
|
|
182
|
+
- Merge pull request #55 from xinglong-zhang/orca. [Xinglong Zhang]
|
|
183
|
+
|
|
184
|
+
modified Makefile + .github/workflows/main.yml
|
|
185
|
+
- Modified .github/workflows/main.yml and Makefile. [Xinglong Zhang]
|
|
186
|
+
- Added () to pytest.fixture for consistency. [Xinglong Zhang]
|
|
187
|
+
- Test. [Xinglong Zhang]
|
|
188
|
+
- Merge pull request #54 from xinglong-zhang/orca. [Xinglong Zhang]
|
|
189
|
+
|
|
190
|
+
added --cov= to not do any source filteritering and record everything
|
|
191
|
+
- Add test_base.py. [Xinglong Zhang]
|
|
192
|
+
- Modified .github/workflows/main.yml. [Xinglong Zhang]
|
|
193
|
+
- Added --cov= to not do any source filteritering and record everything.
|
|
194
|
+
[Xinglong Zhang]
|
|
195
|
+
- Merge pull request #53 from xinglong-zhang/orca. [Xinglong Zhang]
|
|
196
|
+
|
|
197
|
+
remove --cov=chemsmart in Makefile
|
|
198
|
+
- Remove --cov=[SOURCE] Path or package name to measure during
|
|
199
|
+
execution (multi-allowed). Use --cov= to not do any source filtering
|
|
200
|
+
and record. [Xinglong Zhang]
|
|
201
|
+
- Merge pull request #52 from xinglong-zhang/orca. [Xinglong Zhang]
|
|
202
|
+
|
|
203
|
+
install ruff black in workflows/main.yml + get correct path of test data
|
|
204
|
+
- Install ruff black in workflows/main.yml + get correct path of test
|
|
205
|
+
data. [Xinglong Zhang]
|
|
206
|
+
- Merge pull request #51 from xinglong-zhang/orca. [Xinglong Zhang]
|
|
207
|
+
|
|
208
|
+
renamed AllTest.py files to test_All.py
|
|
209
|
+
- Renamed AllTest.py files to test_All.py to follow pytest automatic
|
|
210
|
+
discovery naming convention. [Xinglong Zhang]
|
|
211
|
+
- Merge pull request #50 from xinglong-zhang/orca. [Xinglong Zhang]
|
|
212
|
+
|
|
213
|
+
updated workflow
|
|
214
|
+
- Modified .github/workflows/main.yml. [Xinglong Zhang]
|
|
215
|
+
- Remove _USE_CP_SENDFILE for BlockingIOError: [Errno 11] [Xinglong
|
|
216
|
+
Zhang]
|
|
217
|
+
- Remove commented out to remove script when job is completed in
|
|
218
|
+
GaussianJobrunner and ORCAJobrunner. [Xinglong Zhang]
|
|
219
|
+
- Merge pull request #49 from xinglong-zhang/orca. [Xinglong Zhang]
|
|
220
|
+
|
|
221
|
+
update .github/workflows/main.yml to install dependencies from pyproj…
|
|
222
|
+
- Update .github/workflows/main.yml to install dependencies from
|
|
223
|
+
pyproject.toml. [Xinglong Zhang]
|
|
224
|
+
- Merge pull request #48 from xinglong-zhang/orca. [Xinglong Zhang]
|
|
225
|
+
|
|
226
|
+
merge orca into gaussian
|
|
227
|
+
- Updated ase version in pyproject.toml. [Xinglong Zhang]
|
|
228
|
+
- Comment out job run in writer test, WIP: to write in JobTest.
|
|
229
|
+
[Xinglong Zhang]
|
|
230
|
+
- Merge pull request #47 from xinglong-zhang/orca. [Xinglong Zhang]
|
|
231
|
+
|
|
232
|
+
updated ase version in pyproject.toml
|
|
233
|
+
- Updated ase version in pyproject.toml. [Xinglong Zhang]
|
|
234
|
+
- Merge pull request #46 from xinglong-zhang/orca. [Xinglong Zhang]
|
|
235
|
+
|
|
236
|
+
black formatting
|
|
237
|
+
- Black formatting. [Xinglong Zhang]
|
|
238
|
+
- Merge pull request #45 from xinglong-zhang/orca. [Xinglong Zhang]
|
|
239
|
+
|
|
240
|
+
lint + fmt
|
|
241
|
+
- Lint + fmt. [Xinglong Zhang]
|
|
242
|
+
- Merge pull request #44 from xinglong-zhang/orca. [Xinglong Zhang]
|
|
243
|
+
- Added orca sp job. [Xinglong Zhang]
|
|
244
|
+
- Linting fix. [Xinglong Zhang]
|
|
245
|
+
- Added ts job. [Xinglong Zhang]
|
|
246
|
+
- Added orca scan job, which works. [Xinglong Zhang]
|
|
247
|
+
- Rename get_setting_from_jobtype to
|
|
248
|
+
get_setting_from_jobtype_for_gaussian. [Xinglong Zhang]
|
|
249
|
+
- Change back get_setting_from_jobtype for gaussian. [Xinglong Zhang]
|
|
250
|
+
- Change back get_setting_from_jobtype for gaussian. [Xinglong Zhang]
|
|
251
|
+
- Tried to write get_setting_from_jobtype() as one function for both
|
|
252
|
+
gaussian and orca but seems more complicated than for individual one.
|
|
253
|
+
[Xinglong Zhang]
|
|
254
|
+
- Remove ORCAConstrainedOptJobSettings. [Xinglong Zhang]
|
|
255
|
+
- Clean up ORCAInpJob. [Xinglong Zhang]
|
|
256
|
+
- Clean up orca irc job. [Xinglong Zhang]
|
|
257
|
+
- Orca irc job works; WIP: to add tests. [Xinglong Zhang]
|
|
258
|
+
- Orca IRC job works. [Xinglong Zhang]
|
|
259
|
+
- Added orca modred job. [Xinglong Zhang]
|
|
260
|
+
- Remove jobs/orca/execution.py; no jobs/programs/execution.py required
|
|
261
|
+
for chemsmart. [Xinglong Zhang]
|
|
262
|
+
- Clean up FakeOrcaJobrunner. [Xinglong Zhang]
|
|
263
|
+
- Orca opt jobs done with frozen atoms, orca writer done, WIP: tests.
|
|
264
|
+
[Xinglong Zhang]
|
|
265
|
+
- Refactor GaussianRef() and ORCARef() [Xinglong Zhang]
|
|
266
|
+
- Orca runs opt job correctly. [Xinglong Zhang]
|
|
267
|
+
- Read_molecular_job_yaml() function to take in program argument; no
|
|
268
|
+
defaults.yaml present, will use ProgramJobSettings.defaults()
|
|
269
|
+
[Xinglong Zhang]
|
|
270
|
+
- Add title attribute to base MolecularJobSettings class. [Xinglong
|
|
271
|
+
Zhang]
|
|
272
|
+
- Isort then black. [Xinglong Zhang]
|
|
273
|
+
- Xml. [Xinglong Zhang]
|
|
274
|
+
- Refactor test folders in tests/data/ORCATests. [Xinglong Zhang]
|
|
275
|
+
- Implemented orca input writer. [Xinglong Zhang]
|
|
276
|
+
- Orca inp file runs correctly as supplied. [Xinglong Zhang]
|
|
277
|
+
- Refactor input_string attribute to base JobSettings class. [Xinglong
|
|
278
|
+
Zhang]
|
|
279
|
+
- Backup files. [Xinglong Zhang]
|
|
280
|
+
- Refactor intermediate points and job.is_complete to parent class Job.
|
|
281
|
+
[Xinglong Zhang]
|
|
282
|
+
- Fix conflicts. [Xinglong Zhang]
|
|
283
|
+
- Black formatting. [Xinglong Zhang]
|
|
284
|
+
- Changed to 1-index for accessing structures. [Xinglong Zhang]
|
|
285
|
+
- ORCAOutput fix + passed all tests. [Xinglong Zhang]
|
|
286
|
+
- Black formatting. [Xinglong Zhang]
|
|
287
|
+
- Added orca cb object + refactor forces_in_eV_per_angstrom and
|
|
288
|
+
input_translation_vectors, symbols, list_of_pbc_conditions (derived
|
|
289
|
+
from self.input_coordinates_block) to FileMixin. [Xinglong Zhang]
|
|
290
|
+
- Implement forces in orca output. [Xinglong Zhang]
|
|
291
|
+
- Clean up package files. [Xinglong Zhang]
|
|
292
|
+
- If usersettings.yaml not found in ~/.chemsmart set data = {} [Xinglong
|
|
293
|
+
Zhang]
|
|
294
|
+
- Fix conftest to user server inside the package instead of from
|
|
295
|
+
~/.chemsmart. [Xinglong Zhang]
|
|
296
|
+
- Remove mypy linter. [Xinglong Zhang]
|
|
297
|
+
- # noqa F811 for chemsmart/jobs/gaussian/runner.py. [Xinglong Zhang]
|
|
298
|
+
- Exclude rdkit-stubs due to an error in rdkit python3.10/site-
|
|
299
|
+
packages/rdkit-stubs/Chem/rdMolDescriptors.pyi:185: error: Duplicate
|
|
300
|
+
argument "self" in function definition. [Xinglong Zhang]
|
|
301
|
+
- Add quotations. [Xinglong Zhang]
|
|
302
|
+
- Ruff and black for py310. [Xinglong Zhang]
|
|
303
|
+
- Use python 3.10. [Xinglong Zhang]
|
|
304
|
+
- Gaussian black formatting. [Xinglong Zhang]
|
|
305
|
+
- Fix ruff. [Xinglong Zhang]
|
|
306
|
+
- Requires python 3.9. [Xinglong Zhang]
|
|
307
|
+
- Remove yaml. [Xinglong Zhang]
|
|
308
|
+
- Fix yaml version. [Xinglong Zhang]
|
|
309
|
+
- Add yaml 1.2.2 to pyproject.toml. [Xinglong Zhang]
|
|
310
|
+
- Clean up project metadata. [Xinglong Zhang]
|
|
311
|
+
- Requirements fix in pyproject.toml. [Xinglong Zhang]
|
|
312
|
+
- Remove crest version from pyproject.toml. [Xinglong Zhang]
|
|
313
|
+
- Pyproject.toml fix. [Xinglong Zhang]
|
|
314
|
+
- Pyproject.toml fix. [Xinglong Zhang]
|
|
315
|
+
- Pyproject.toml fix. [Xinglong Zhang]
|
|
316
|
+
- Migrate configurations to pyproject.toml. [Xinglong Zhang]
|
|
317
|
+
- Further fixes. [Xinglong Zhang]
|
|
318
|
+
- Initial fixes. [Xinglong Zhang]
|
|
319
|
+
- Rolled back to using python 3.9. [Xinglong Zhang]
|
|
320
|
+
- Use python 3.10 in .github/workflows/release.yml. [Xinglong Zhang]
|
|
321
|
+
- Added clear cache in .github/workflows/main.yml. [Xinglong Zhang]
|
|
322
|
+
- Explicit python-version: 3.10 for ubuntu. [Xinglong Zhang]
|
|
323
|
+
- Explicit imports in __init__.py using __all__ [Xinglong Zhang]
|
|
324
|
+
- [flake8] [Xinglong Zhang]
|
|
325
|
+
- Use python 3.10 instead of 3.9 in ./.github/workflows/main.yml.
|
|
326
|
+
[Xinglong Zhang]
|
|
327
|
+
- .flake8 ignore F401. [Xinglong Zhang]
|
|
328
|
+
- Ruff fix. [Xinglong Zhang]
|
|
329
|
+
- Assemble molecules from GaussianOutput with pbc + tests. [Xinglong
|
|
330
|
+
Zhang]
|
|
331
|
+
- Removed tests/data/GaussianTests/text/genecp_txt_from_api.txt in test.
|
|
332
|
+
[Xinglong Zhang]
|
|
333
|
+
- Black formatting. [Xinglong Zhang]
|
|
334
|
+
- Removed tests/data/GaussianTests/text/genecp_txt_from_api.txt.
|
|
335
|
+
[Xinglong Zhang]
|
|
336
|
+
- Writer test. [Xinglong Zhang]
|
|
337
|
+
- Add empty line to custom_solvent if not there. [Xinglong Zhang]
|
|
338
|
+
- Turn off freq for certain jobs. [Xinglong Zhang]
|
|
339
|
+
- Added tests for writer. [Xinglong Zhang]
|
|
340
|
+
- Fix gaussian settings test; WIP: test gaussian writter. [Xinglong
|
|
341
|
+
Zhang]
|
|
342
|
+
- Fix settings + tests. [Xinglong Zhang]
|
|
343
|
+
- Added project settings from tests. [Xinglong Zhang]
|
|
344
|
+
- Fix writer. [Xinglong Zhang]
|
|
345
|
+
- Command not in run. [Xinglong Zhang]
|
|
346
|
+
- Write extra commands. [Xinglong Zhang]
|
|
347
|
+
- Rm logging for default settings. [Xinglong Zhang]
|
|
348
|
+
- Rm logging for default settings. [Xinglong Zhang]
|
|
349
|
+
- Logger filter once. [Xinglong Zhang]
|
|
350
|
+
- Logger filter once. [Xinglong Zhang]
|
|
351
|
+
- Logger filter once. [Xinglong Zhang]
|
|
352
|
+
- Logger. [Xinglong Zhang]
|
|
353
|
+
- Write envs. [Xinglong Zhang]
|
|
354
|
+
- Write envs. [Xinglong Zhang]
|
|
355
|
+
- Scheduling info. [Xinglong Zhang]
|
|
356
|
+
- Scheduling slurm mail type. [Xinglong Zhang]
|
|
357
|
+
- Scheduling info fix. [Xinglong Zhang]
|
|
358
|
+
- Fix submitter. [Xinglong Zhang]
|
|
359
|
+
- Fix _write_submission_script. [Xinglong Zhang]
|
|
360
|
+
- Fix _write_submission_script. [Xinglong Zhang]
|
|
361
|
+
- Rm unused imports. [Xinglong Zhang]
|
|
362
|
+
- Pass Server object to Submitter. [Xinglong Zhang]
|
|
363
|
+
- Get submitter type from scheduler with Submitter.NAME attribute.
|
|
364
|
+
[Xinglong Zhang]
|
|
365
|
+
- Fix jobrunner. [Xinglong Zhang]
|
|
366
|
+
- Black formatting. [Xinglong Zhang]
|
|
367
|
+
- Added cli_args to runscript writing. [Xinglong Zhang]
|
|
368
|
+
- Orca settings todo. [Xinglong Zhang]
|
|
369
|
+
- Test gaussian job setting from orca input. [Xinglong Zhang]
|
|
370
|
+
- Added back changes in commit e5d0419c1c9415 less removal of orca.
|
|
371
|
+
[Xinglong Zhang]
|
|
372
|
+
- Revert "branched from cli; gaussian only; removed orca" [Xinglong
|
|
373
|
+
Zhang]
|
|
374
|
+
|
|
375
|
+
This reverts commit e5d0419c1c9415700d65bde02c37b1b7d41884f4.
|
|
376
|
+
- Merge branch 'main0' into gaussian0 main0 has cli0 merged into main,
|
|
377
|
+
where cli0 was everything before removal of orca, based on commit
|
|
378
|
+
5c55d8d. [Xinglong Zhang]
|
|
379
|
+
- Merge pull request #40 from xinglong-zhang/cli0. [Xinglong Zhang]
|
|
380
|
+
|
|
381
|
+
Cli0 to merge into main0, which will be merged into main once orca jobs have been fixed
|
|
382
|
+
- Orca todo. [Xinglong Zhang]
|
|
383
|
+
- Added more gaussian tests. [Xinglong Zhang]
|
|
384
|
+
- Added gaussian job settings test. [Xinglong Zhang]
|
|
385
|
+
- Black formatting. [Xinglong Zhang]
|
|
386
|
+
- Added write_coordinates method for Molecule class + tests; molecular
|
|
387
|
+
coordinates can be written in different formats. [Xinglong Zhang]
|
|
388
|
+
- Branched from cli; gaussian only; removed orca. [Xinglong Zhang]
|
|
389
|
+
- Recover orca from 5c55d8d70de27366ba. [Xinglong Zhang]
|
|
390
|
+
- Simplified sub.py. [Xinglong Zhang]
|
|
391
|
+
- Added submit_command and Server.submit. [Xinglong Zhang]
|
|
392
|
+
- Write program specifics in submission script and remove specifications
|
|
393
|
+
from ~/.chemsmart/{self.job.PROGRAM}/{self.job.PROGRAM}.modules |
|
|
394
|
+
.scripts | .envars. [Xinglong Zhang]
|
|
395
|
+
- Make executable property of Submitter. [Xinglong Zhang]
|
|
396
|
+
- Write conda specific envs. [Xinglong Zhang]
|
|
397
|
+
- Added program specific envs + tests. [Xinglong Zhang]
|
|
398
|
+
- Renamed scratch to scratch_dir in Server, + add default values +
|
|
399
|
+
change server.execution_type to server.submit_command. [Xinglong
|
|
400
|
+
Zhang]
|
|
401
|
+
- ENH: improvement to GaussianFakeRunner so that fake flag is added to
|
|
402
|
+
filename automatically. [Xinglong Zhang]
|
|
403
|
+
- Added wbi job. [Xinglong Zhang]
|
|
404
|
+
- WIP: UVVis job to be added. [Xinglong Zhang]
|
|
405
|
+
- Added TS job, with options to freeze atoms. [Xinglong Zhang]
|
|
406
|
+
- Added tddft job. [Xinglong Zhang]
|
|
407
|
+
- Added sp job. [Xinglong Zhang]
|
|
408
|
+
- Scan job added. [Xinglong Zhang]
|
|
409
|
+
- WIP: Grouper for molecular systems matching, saopt job to be fixed.
|
|
410
|
+
[Xinglong Zhang]
|
|
411
|
+
- WIP: Grouper for molecular systems matching. [Xinglong Zhang]
|
|
412
|
+
- Added resp job. [Xinglong Zhang]
|
|
413
|
+
- Added nci job, to check writer and refactor it into settings.
|
|
414
|
+
[Xinglong Zhang]
|
|
415
|
+
- Added modred job. [Xinglong Zhang]
|
|
416
|
+
- Added link jobs. [Xinglong Zhang]
|
|
417
|
+
- Added irc. [Xinglong Zhang]
|
|
418
|
+
- Remove unused imports. [Xinglong Zhang]
|
|
419
|
+
- Added dias job, use 1-indexed. [Xinglong Zhang]
|
|
420
|
+
- Clean crest job to remove skip_completed kwarg. [Xinglong Zhang]
|
|
421
|
+
- Added userjob + make everything (indices of list of structures and
|
|
422
|
+
atoms in molecule) 1-indexed. [Xinglong Zhang]
|
|
423
|
+
- Master crest job to run modred, scan, opt, ts etc. [Xinglong Zhang]
|
|
424
|
+
- Rename modredundant to modred. [Xinglong Zhang]
|
|
425
|
+
- Chemsmart run -s SLURM --debug gaussian -p dee -f crest_conformers.xyz
|
|
426
|
+
-l cc -c 0 -m 1 crest -j modred -c [1,2] -n 5 -R. [Xinglong Zhang]
|
|
427
|
+
- Add crest job to run all jobs from crest. [Xinglong Zhang]
|
|
428
|
+
- Added crest command to run crest jobs. [Xinglong Zhang]
|
|
429
|
+
- Added imports in chemsmart/jobs/gaussian/__init__.py. [Xinglong Zhang]
|
|
430
|
+
- Broken. [Xinglong Zhang]
|
|
431
|
+
- Remove imports in chemsmart/jobs/gaussian/__init__.py. [Xinglong
|
|
432
|
+
Zhang]
|
|
433
|
+
- Added crestopt job. [Xinglong Zhang]
|
|
434
|
+
- Rm comments. [Xinglong Zhang]
|
|
435
|
+
- Cleanup. [Xinglong Zhang]
|
|
436
|
+
- Added g16com job. [Xinglong Zhang]
|
|
437
|
+
- GaussianGeneralJob fix. [Xinglong Zhang]
|
|
438
|
+
- GaussianComJob for direct run. [Xinglong Zhang]
|
|
439
|
+
- Num cores to cli base jobrunner. [Xinglong Zhang]
|
|
440
|
+
- Add num cores to cli base jobrunner. [Xinglong Zhang]
|
|
441
|
+
- Add num cores to cli. [Xinglong Zhang]
|
|
442
|
+
- Get server from_servername. [Xinglong Zhang]
|
|
443
|
+
- Distinguish servername from Server object. [Xinglong Zhang]
|
|
444
|
+
- Added debug messages. [Xinglong Zhang]
|
|
445
|
+
- Rm kwargs. [Xinglong Zhang]
|
|
446
|
+
- Added kwargs. [Xinglong Zhang]
|
|
447
|
+
- Added debug messages. [Xinglong Zhang]
|
|
448
|
+
- Add update os environ. [Xinglong Zhang]
|
|
449
|
+
- Servers from yaml. [Xinglong Zhang]
|
|
450
|
+
- Servers from yaml. [Xinglong Zhang]
|
|
451
|
+
- Servers from yaml. [Xinglong Zhang]
|
|
452
|
+
- Servers from yaml. [Xinglong Zhang]
|
|
453
|
+
- Create subclass. [Xinglong Zhang]
|
|
454
|
+
- Scheduler type name. [Xinglong Zhang]
|
|
455
|
+
- Remove comments and prints. [Xinglong Zhang]
|
|
456
|
+
- Added obtain structure from pubchem, runs correctly locally with and
|
|
457
|
+
without fake. [Xinglong Zhang]
|
|
458
|
+
- Black formatting. [Xinglong Zhang]
|
|
459
|
+
- Improved logger so that it logs only once if it occurs in lru_cache
|
|
460
|
+
functions + remove self.executable.env. [Xinglong Zhang]
|
|
461
|
+
- Get_list_from_string_range() function to return 1-indexed list.
|
|
462
|
+
[Xinglong Zhang]
|
|
463
|
+
- Remove unused import in chemsmart.cli.__init__.py. [Xinglong Zhang]
|
|
464
|
+
- Refactor utils.logger.py. [Xinglong Zhang]
|
|
465
|
+
- Refine run options. [Xinglong Zhang]
|
|
466
|
+
- Delete write methods from JobSettings and relegate to InputWriter
|
|
467
|
+
class. [Xinglong Zhang]
|
|
468
|
+
- Remove commented out codes that remove duplicate last structures in
|
|
469
|
+
io.gaussian.output.py. [Xinglong Zhang]
|
|
470
|
+
- Remove prints. [Xinglong Zhang]
|
|
471
|
+
- Runs in scratch if set correctly. Eg in
|
|
472
|
+
~/.chemsmart/server/local.yaml. [Xinglong Zhang]
|
|
473
|
+
- WIP: to fix scratch directory. [Xinglong Zhang]
|
|
474
|
+
- Added executables. [Xinglong Zhang]
|
|
475
|
+
- WIP: cli no outputs. [Xinglong Zhang]
|
|
476
|
+
- Fix class Server. [Xinglong Zhang]
|
|
477
|
+
- WIP: run.py and jobrunners. [Xinglong Zhang]
|
|
478
|
+
- Added servers. [Xinglong Zhang]
|
|
479
|
+
- Read project settings from user yaml files only. [Xinglong Zhang]
|
|
480
|
+
- Fix. [Xinglong Zhang]
|
|
481
|
+
- WIP: introduce InputWriter class. [Xinglong Zhang]
|
|
482
|
+
- WIP: gaussian subcommands work with MyCommand cls. [Xinglong Zhang]
|
|
483
|
+
- WIP: add job and jobrunner base class. [Xinglong Zhang]
|
|
484
|
+
- WIP: servers. [Xinglong Zhang]
|
|
485
|
+
- Added ibm submitter. [Xinglong Zhang]
|
|
486
|
+
- Added slurm submitter. [Xinglong Zhang]
|
|
487
|
+
- Added pbs submitter. [Xinglong Zhang]
|
|
488
|
+
- Added server from yaml + tests. [Xinglong Zhang]
|
|
489
|
+
- Read yaml file. [Xinglong Zhang]
|
|
490
|
+
- Merge branch 'main' into cli. [Xinglong Zhang]
|
|
491
|
+
- Merge pull request #39 from xinglong-zhang/wbi. [Xinglong Zhang]
|
|
492
|
+
- Ruff check . --fix : remove unused imports. [Xinglong Zhang]
|
|
493
|
+
- Black formatting. [Xinglong Zhang]
|
|
494
|
+
- Added test for SDFFile for .sdf structure. [Xinglong Zhang]
|
|
495
|
+
- Clean up. [Xinglong Zhang]
|
|
496
|
+
- Ruff check . --fix : remove unused imports. [Xinglong Zhang]
|
|
497
|
+
- Bug fix for using CM5 charges. [Xinglong Zhang]
|
|
498
|
+
- Black formatting. [Xinglong Zhang]
|
|
499
|
+
- ENH: added script for computing Fukui reactivity indices. [Xinglong
|
|
500
|
+
Zhang]
|
|
501
|
+
- Merge pull request #37 from xinglong-zhang/wbi. [Xinglong Zhang]
|
|
502
|
+
- Black formatting. [Xinglong Zhang]
|
|
503
|
+
- Added in mulliken charges and spin densities for gaussian output file.
|
|
504
|
+
[Xinglong Zhang]
|
|
505
|
+
- Merge pull request #36 from xinglong-zhang/wbi. [Xinglong Zhang]
|
|
506
|
+
- Black formatting. [Xinglong Zhang]
|
|
507
|
+
- Remove unused import statements. [Xinglong Zhang]
|
|
508
|
+
- ENH: added Hirshfeld analysis for Gaussian output files. [Xinglong
|
|
509
|
+
Zhang]
|
|
510
|
+
- Merge pull request #35 from xinglong-zhang/wbi. [Xinglong Zhang]
|
|
511
|
+
- Remove unused imports + black formatting. [Xinglong Zhang]
|
|
512
|
+
- Added script to obtain natural charges from NBO calcs. [Xinglong
|
|
513
|
+
Zhang]
|
|
514
|
+
- Black length fix. [Xinglong Zhang]
|
|
515
|
+
- Chemsmart as executable. [Xinglong Zhang]
|
|
516
|
+
- Initial cli files. [Xinglong Zhang]
|
|
517
|
+
- Merge pull request #34 from xinglong-zhang/gaussian_io. [Xinglong
|
|
518
|
+
Zhang]
|
|
519
|
+
- Fix filenames errors in GaussianGenECPTest due to renaming. [Xinglong
|
|
520
|
+
Zhang]
|
|
521
|
+
- TODO: improve ORCA output parser. [Xinglong Zhang]
|
|
522
|
+
- Update orca input molecule. [Xinglong Zhang]
|
|
523
|
+
- Comment out method _read_xyz_file_structures_and_comments() in
|
|
524
|
+
Molecule class since this is refactored into XYZFile class. [Xinglong
|
|
525
|
+
Zhang]
|
|
526
|
+
- Improved parser for gaussian input file + additional tests. [Xinglong
|
|
527
|
+
Zhang]
|
|
528
|
+
- Improved molecule for coordination block. [Xinglong Zhang]
|
|
529
|
+
- Create molecules from .xyz files. [Xinglong Zhang]
|
|
530
|
+
- Read structure from xyz files. [Xinglong Zhang]
|
|
531
|
+
- Rm commented out codes - alternative for getting all_structures from
|
|
532
|
+
Gaussian output file. [Xinglong Zhang]
|
|
533
|
+
- Include get_molecule() method for Gaussian16Output class. [Xinglong
|
|
534
|
+
Zhang]
|
|
535
|
+
- Remove unused imports. [Xinglong Zhang]
|
|
536
|
+
- Added parser for gaussian pbc log files + tests. [Xinglong Zhang]
|
|
537
|
+
- Added molecules with energy and forces. [Xinglong Zhang]
|
|
538
|
+
- Added optimized structures to gaussian output. [Xinglong Zhang]
|
|
539
|
+
- Added num energies. [Xinglong Zhang]
|
|
540
|
+
- Added energies for QM, MP2 and ONIOM. [Xinglong Zhang]
|
|
541
|
+
- Rm .swp file. [Xinglong Zhang]
|
|
542
|
+
- Include vibrational modes for both normal and frozen atoms frequency
|
|
543
|
+
calcs + tests. [Xinglong Zhang]
|
|
544
|
+
- Black formatting. [Xinglong Zhang]
|
|
545
|
+
- Added frozen coordinates and free coordinates and tests. [Xinglong
|
|
546
|
+
Zhang]
|
|
547
|
+
- TODO: vibrational freq normal modes. [Xinglong Zhang]
|
|
548
|
+
- Merge pull request #33 from xinglong-zhang/gaussian_io. [Xinglong
|
|
549
|
+
Zhang]
|
|
550
|
+
- Requires basis-set-exchange and not bse. [Xinglong Zhang]
|
|
551
|
+
- Remove .swp. [Xinglong Zhang]
|
|
552
|
+
- Merge pull request #27 from xinglong-zhang/wbi. [Xinglong Zhang]
|
|
553
|
+
- Merge pull request #31 from xinglong-zhang/main. [Xinglong Zhang]
|
|
554
|
+
|
|
555
|
+
merge main to wbi
|
|
556
|
+
- Black formatting to 79 char lengths. [Xinglong Zhang]
|
|
557
|
+
- ENH: added in gen and genecp. [Xinglong Zhang]
|
|
558
|
+
- Remove comparison functions in GaussianGenECPTest.py. [Xinglong Zhang]
|
|
559
|
+
- Added genecp and tests. [Xinglong Zhang]
|
|
560
|
+
- Test. [Xinglong Zhang]
|
|
561
|
+
- Test. [Xinglong Zhang]
|
|
562
|
+
- Bump actions/setup-python from 3 to 5. [dependabot[bot]]
|
|
563
|
+
|
|
564
|
+
Bumps [actions/setup-python](https://github.com/actions/setup-python) from 3 to 5.
|
|
565
|
+
- [Release notes](https://github.com/actions/setup-python/releases)
|
|
566
|
+
- [Commits](https://github.com/actions/setup-python/compare/v3...v5)
|
|
567
|
+
|
|
568
|
+
---
|
|
569
|
+
updated-dependencies:
|
|
570
|
+
- dependency-name: actions/setup-python
|
|
571
|
+
dependency-type: direct:production
|
|
572
|
+
update-type: version-update:semver-major
|
|
573
|
+
...
|
|
574
|
+
- Bump actions/checkout from 3 to 4. [dependabot[bot]]
|
|
575
|
+
|
|
576
|
+
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4.
|
|
577
|
+
- [Release notes](https://github.com/actions/checkout/releases)
|
|
578
|
+
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
|
|
579
|
+
- [Commits](https://github.com/actions/checkout/compare/v3...v4)
|
|
580
|
+
|
|
581
|
+
---
|
|
582
|
+
updated-dependencies:
|
|
583
|
+
- dependency-name: actions/checkout
|
|
584
|
+
dependency-type: direct:production
|
|
585
|
+
update-type: version-update:semver-major
|
|
586
|
+
...
|
|
587
|
+
- Merge pull request #26 from xinglong-zhang/main. [Xinglong Zhang]
|
|
588
|
+
- Merge pull request #32 from xinglong-zhang/gaussian_io. [Xinglong
|
|
589
|
+
Zhang]
|
|
590
|
+
- ORCAFileMixin. [Xinglong Zhang]
|
|
591
|
+
- Make ORCAFileMixin as a subclass of FileMixin. [Xinglong Zhang]
|
|
592
|
+
- Make ORCAFileMixin as a subclass of FileMixin. [Xinglong Zhang]
|
|
593
|
+
- Black formating and removed unused imports. [Xinglong Zhang]
|
|
594
|
+
- Refactored route_object and dervied properties into GaussianFileMixin.
|
|
595
|
+
[Xinglong Zhang]
|
|
596
|
+
- Refactored _get_chk(), _get_mem() and _get_nproc() to
|
|
597
|
+
GaussianFileMixin. [Xinglong Zhang]
|
|
598
|
+
- Merge pull request #30 from xinglong-zhang/gassian_io. [Xinglong
|
|
599
|
+
Zhang]
|
|
600
|
+
- Black formatting to 79 char lengths. [Xinglong Zhang]
|
|
601
|
+
- ENH: added in gen and genecp. [Xinglong Zhang]
|
|
602
|
+
- Remove comparison functions in GaussianGenECPTest.py. [Xinglong Zhang]
|
|
603
|
+
- Added genecp and tests. [Xinglong Zhang]
|
|
604
|
+
- Test. [Xinglong Zhang]
|
|
605
|
+
- Test. [Xinglong Zhang]
|
|
606
|
+
- Merge pull request #29 from xinglong-
|
|
607
|
+
zhang/dependabot/github_actions/actions/setup-python-5. [Xinglong
|
|
608
|
+
Zhang]
|
|
609
|
+
|
|
610
|
+
Bump actions/setup-python from 3 to 5
|
|
611
|
+
- Bump actions/setup-python from 3 to 5. [dependabot[bot]]
|
|
612
|
+
|
|
613
|
+
Bumps [actions/setup-python](https://github.com/actions/setup-python) from 3 to 5.
|
|
614
|
+
- [Release notes](https://github.com/actions/setup-python/releases)
|
|
615
|
+
- [Commits](https://github.com/actions/setup-python/compare/v3...v5)
|
|
616
|
+
|
|
617
|
+
---
|
|
618
|
+
updated-dependencies:
|
|
619
|
+
- dependency-name: actions/setup-python
|
|
620
|
+
dependency-type: direct:production
|
|
621
|
+
update-type: version-update:semver-major
|
|
622
|
+
...
|
|
623
|
+
- Merge pull request #28 from xinglong-
|
|
624
|
+
zhang/dependabot/github_actions/actions/checkout-4. [Xinglong Zhang]
|
|
625
|
+
|
|
626
|
+
Bump actions/checkout from 3 to 4
|
|
627
|
+
- Bump actions/checkout from 3 to 4. [dependabot[bot]]
|
|
628
|
+
|
|
629
|
+
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4.
|
|
630
|
+
- [Release notes](https://github.com/actions/checkout/releases)
|
|
631
|
+
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
|
|
632
|
+
- [Commits](https://github.com/actions/checkout/compare/v3...v4)
|
|
633
|
+
|
|
634
|
+
---
|
|
635
|
+
updated-dependencies:
|
|
636
|
+
- dependency-name: actions/checkout
|
|
637
|
+
dependency-type: direct:production
|
|
638
|
+
update-type: version-update:semver-major
|
|
639
|
+
...
|
|
640
|
+
- Merge pull request #22 from xinglong-
|
|
641
|
+
zhang/dependabot/github_actions/codecov/codecov-action-5. [Xinglong
|
|
642
|
+
Zhang]
|
|
643
|
+
|
|
644
|
+
Bump codecov/codecov-action from 4 to 5
|
|
645
|
+
- Bump codecov/codecov-action from 4 to 5. [dependabot[bot]]
|
|
646
|
+
|
|
647
|
+
Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 4 to 5.
|
|
648
|
+
- [Release notes](https://github.com/codecov/codecov-action/releases)
|
|
649
|
+
- [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md)
|
|
650
|
+
- [Commits](https://github.com/codecov/codecov-action/compare/v4...v5)
|
|
651
|
+
|
|
652
|
+
---
|
|
653
|
+
updated-dependencies:
|
|
654
|
+
- dependency-name: codecov/codecov-action
|
|
655
|
+
dependency-type: direct:production
|
|
656
|
+
update-type: version-update:semver-major
|
|
657
|
+
...
|
|
658
|
+
- Merge pull request #25 from xinglong-zhang/jobs_io. [Xinglong Zhang]
|
|
659
|
+
- Remove token generation in .github/workflows/main.yml. [Xinglong
|
|
660
|
+
Zhang]
|
|
661
|
+
- Remove toxyz.py. [Xinglong Zhang]
|
|
662
|
+
- Dataset method to be added. [Xinglong Zhang]
|
|
663
|
+
- Removed xtb io, which is not included yet. [Xinglong Zhang]
|
|
664
|
+
- Keep line lengths to 79 characters. [Xinglong Zhang]
|
|
665
|
+
- Removed dataset.py. [Xinglong Zhang]
|
|
666
|
+
- Keep only io. [Xinglong Zhang]
|
|
667
|
+
- Black formatting. [Xinglong Zhang]
|
|
668
|
+
- Black fix to length 79. [Xinglong Zhang]
|
|
669
|
+
- Xtb parser. [Xinglong Zhang]
|
|
670
|
+
- Update gaussian output parser. [Xinglong Zhang]
|
|
671
|
+
- Remove cli. [Xinglong Zhang]
|
|
672
|
+
- Fix tests. [Xinglong Zhang]
|
|
673
|
+
- Merge newio to wbi. [Xinglong Zhang]
|
|
674
|
+
- Added ruff as requirement-test.txt. [Xinglong Zhang]
|
|
675
|
+
- Black fix length 79. [Xinglong Zhang]
|
|
676
|
+
- .flake8 length to 121. [Xinglong Zhang]
|
|
677
|
+
- Added io.gaussian.__init__.py. [Xinglong Zhang]
|
|
678
|
+
- Merge remote-tracking branch 'origin' into newio. [Xinglong Zhang]
|
|
679
|
+
- Merge local io to newio. [Xinglong Zhang]
|
|
680
|
+
- Merge pull request #16 from xinglong-zhang/main. [Xinglong Zhang]
|
|
681
|
+
|
|
682
|
+
Merge pull request #14 from xinglong-zhang/logfiles
|
|
683
|
+
- Fix conflict. [Xinglong Zhang]
|
|
684
|
+
- Merge pull request #12 from xinglong-zhang/main. [Xinglong Zhang]
|
|
685
|
+
|
|
686
|
+
main to io
|
|
687
|
+
- Black reformat. [Xinglong Zhang]
|
|
688
|
+
- Black reformat. [Xinglong Zhang]
|
|
689
|
+
- Add file. [Xinglong Zhang]
|
|
690
|
+
- Merge pull request #9 from xinglong-zhang/revert-8-uvvis. [Xinglong
|
|
691
|
+
Zhang]
|
|
692
|
+
|
|
693
|
+
Revert "EHN: Uvvis read transitions and MO contributions without pymatgen "
|
|
694
|
+
- Revert "EHN: Uvvis read transitions and MO contributions without
|
|
695
|
+
pymatgen " [Xinglong Zhang]
|
|
696
|
+
- Merge pull request #8 from xinglong-zhang/uvvis. [Xinglong Zhang]
|
|
697
|
+
- Merge pull request #7 from xinglong-zhang/uvvis. [Xinglong Zhang]
|
|
698
|
+
|
|
699
|
+
Able to parse and operate on .cube files
|
|
700
|
+
- Initial cli for gaussian and orca. [Xinglong Zhang]
|
|
701
|
+
- Streamlined coordinate block. [Xinglong Zhang]
|
|
702
|
+
- Updates. [Xinglong Zhang]
|
|
703
|
+
- Fix hirshfeld when values of dict are the same + toxyz.py todo.
|
|
704
|
+
[Xinglong Zhang]
|
|
705
|
+
- Script to read hirshfeld analysis. [Xinglong Zhang]
|
|
706
|
+
- Add hirshfeld analysis orca. [Xinglong Zhang]
|
|
707
|
+
- Refactor so that orca SP output files can also read up till rotational
|
|
708
|
+
constants. [Xinglong Zhang]
|
|
709
|
+
- Refactor energies so that optimized and sp output files can use the
|
|
710
|
+
same code to get. [Xinglong Zhang]
|
|
711
|
+
- Use repattern in orca outputs.py. [Xinglong Zhang]
|
|
712
|
+
- Use standard_coord_pattern. [Xinglong Zhang]
|
|
713
|
+
- Add hirshefeld. [Xinglong Zhang]
|
|
714
|
+
- Cleaned with black. [Xinglong Zhang]
|
|
715
|
+
- Fix homo-lumo gap in gaussian output. [Xinglong Zhang]
|
|
716
|
+
- Fix orca fmo energies. [Xinglong Zhang]
|
|
717
|
+
- Run black. [Xinglong Zhang]
|
|
718
|
+
- Linting. [Xinglong Zhang]
|
|
719
|
+
- Safe delete chemsmart/io/orca/utils.py. [Xinglong Zhang]
|
|
720
|
+
- Added FMO energies for gaussian and orca. [Xinglong Zhang]
|
|
721
|
+
- Orca outputs.py + tests. [Xinglong Zhang]
|
|
722
|
+
- Orca outputs.py + tests. [Xinglong Zhang]
|
|
723
|
+
- Added ORCA IO inputs.py + fix tests. [Xinglong Zhang]
|
|
724
|
+
- Refactor gaussian io. [Xinglong Zhang]
|
|
725
|
+
- Remove rename_project.yml in github workflow. [Xinglong Zhang]
|
|
726
|
+
- Add github workflow auto tests. [Xinglong Zhang]
|
|
727
|
+
- Add github workflow auto tests. [Xinglong Zhang]
|
|
728
|
+
- Add github workflow auto tests. [Xinglong Zhang]
|
|
729
|
+
- Collect all patterns together. [Xinglong Zhang]
|
|
730
|
+
- Added num atoms of the molecule. [Xinglong Zhang]
|
|
731
|
+
- Fix orca route. [Xinglong Zhang]
|
|
732
|
+
- Add orca. [Xinglong Zhang]
|
|
733
|
+
- Fmo energies. [Xinglong Zhang]
|
|
734
|
+
- Added fmo gap. [Xinglong Zhang]
|
|
735
|
+
- Add in orbital energies. [Xinglong Zhang]
|
|
736
|
+
- Add utils test. [Xinglong Zhang]
|
|
737
|
+
- Black max length 79. [Xinglong Zhang]
|
|
738
|
+
- Changed max line lengths to 79. [Xinglong Zhang]
|
|
739
|
+
- Black fix. [Xinglong Zhang]
|
|
740
|
+
- Added tests for gaussian input files. [Xinglong Zhang]
|
|
741
|
+
- Add gaussian output parser. [Xinglong Zhang]
|
|
742
|
+
- Make length to 79. [Xinglong Zhang]
|
|
743
|
+
- Run black -l 121. [Xinglong Zhang]
|
|
744
|
+
- Remove unused imports. [Xinglong Zhang]
|
|
745
|
+
- Black linting. [Xinglong Zhang]
|
|
746
|
+
- Get electronic configurations. [Xinglong Zhang]
|
|
747
|
+
- Merge remote-tracking branch 'origin' into wbi. [Xinglong Zhang]
|
|
748
|
+
- Merge pull request #19 from xinglong-zhang/winfix. [Xinglong Zhang]
|
|
749
|
+
|
|
750
|
+
fix win workflow error
|
|
751
|
+
- Fix win workflow error. [Xinglong Zhang]
|
|
752
|
+
- Fix win workflow error. [Xinglong Zhang]
|
|
753
|
+
- Merge pull request #18 from xinglong-zhang/winfix. [Xinglong Zhang]
|
|
754
|
+
- Fix win workflow error. [Xinglong Zhang]
|
|
755
|
+
- Merge pull request #17 from xinglong-zhang/clean. [Xinglong Zhang]
|
|
756
|
+
- Clean up main. [Xinglong Zhang]
|
|
757
|
+
- Test push to main. [Xinglong Zhang]
|
|
758
|
+
- Test push to main. [Xinglong Zhang]
|
|
759
|
+
- Test push to main. [Xinglong Zhang]
|
|
760
|
+
- Parser for NAO. [Xinglong Zhang]
|
|
761
|
+
- Working parser for nao. [Xinglong Zhang]
|
|
762
|
+
- Merge pull request #14 from xinglong-zhang/logfiles. [Xinglong Zhang]
|
|
763
|
+
|
|
764
|
+
add log files tddft
|
|
765
|
+
- Add log files tddft. [Xinglong Zhang]
|
|
766
|
+
- Merge pull request #13 from xinglong-zhang/test. [Xinglong Zhang]
|
|
767
|
+
|
|
768
|
+
io fix genecp
|
|
769
|
+
- Black reformat tests. [Xinglong Zhang]
|
|
770
|
+
- Black reformat. [Xinglong Zhang]
|
|
771
|
+
- Io fix genecp. [Xinglong Zhang]
|
|
772
|
+
- Added tddft. [Xinglong Zhang]
|
|
773
|
+
- Gaussian16Input. [Xinglong Zhang]
|
|
774
|
+
- Refactor. [Xinglong Zhang]
|
|
775
|
+
- Remove sponsor. [Xinglong Zhang]
|
|
776
|
+
- 88 to 121 fix. [Xinglong Zhang]
|
|
777
|
+
- In Makefile change line characters from 88 to 121. [Xinglong Zhang]
|
|
778
|
+
- In Makefile change line characters from 79 to 88. [Xinglong Zhang]
|
|
779
|
+
- Black fix. [Xinglong Zhang]
|
|
780
|
+
- Black fix E206 see .flake8 comments. [Xinglong Zhang]
|
|
781
|
+
- Extend-ignore flake8. [Xinglong Zhang]
|
|
782
|
+
- Extend-ignore flake8. [Xinglong Zhang]
|
|
783
|
+
- Black fix tests. [Xinglong Zhang]
|
|
784
|
+
- Flake ignore E203. [Xinglong Zhang]
|
|
785
|
+
- Flake fix. [Xinglong Zhang]
|
|
786
|
+
- Black fix. [Xinglong Zhang]
|
|
787
|
+
- Black fix. [Xinglong Zhang]
|
|
788
|
+
- Black fix line lengths. [Xinglong Zhang]
|
|
789
|
+
- Flake8. [Xinglong Zhang]
|
|
790
|
+
- Fix flake8 errors. [Xinglong Zhang]
|
|
791
|
+
- Linting fix. [Xinglong Zhang]
|
|
792
|
+
- Add error messages. [Xinglong Zhang]
|
|
793
|
+
- Cube operator fix. [Xinglong Zhang]
|
|
794
|
+
- Write cube diff. [Xinglong Zhang]
|
|
795
|
+
- Cube operation. [Xinglong Zhang]
|
|
796
|
+
- Cube operator done. [Xinglong Zhang]
|
|
797
|
+
- Ruff fix. [Xinglong Zhang]
|
|
798
|
+
- Cube file operator. [Xinglong Zhang]
|
|
799
|
+
- Add gridpoints data. [Xinglong Zhang]
|
|
800
|
+
- Add structure. [Xinglong Zhang]
|
|
801
|
+
- Molecule structure class. [Xinglong Zhang]
|
|
802
|
+
- Periodic table. [Xinglong Zhang]
|
|
803
|
+
- Added FileMixin. [Xinglong Zhang]
|
|
804
|
+
- Uvvis init. [Xinglong Zhang]
|
|
805
|
+
- Merge pull request #3 from xinglong-
|
|
806
|
+
zhang/dependabot/github_actions/actions/setup-python-5. [Xinglong
|
|
807
|
+
Zhang]
|
|
808
|
+
|
|
809
|
+
Bump actions/setup-python from 4 to 5
|
|
810
|
+
- Bump actions/setup-python from 4 to 5. [dependabot[bot]]
|
|
811
|
+
|
|
812
|
+
Bumps [actions/setup-python](https://github.com/actions/setup-python) from 4 to 5.
|
|
813
|
+
- [Release notes](https://github.com/actions/setup-python/releases)
|
|
814
|
+
- [Commits](https://github.com/actions/setup-python/compare/v4...v5)
|
|
815
|
+
|
|
816
|
+
---
|
|
817
|
+
updated-dependencies:
|
|
818
|
+
- dependency-name: actions/setup-python
|
|
819
|
+
dependency-type: direct:production
|
|
820
|
+
update-type: version-update:semver-major
|
|
821
|
+
...
|
|
822
|
+
- Merge pull request #4 from xinglong-
|
|
823
|
+
zhang/dependabot/github_actions/stefanzweifel/git-auto-commit-
|
|
824
|
+
action-5. [Xinglong Zhang]
|
|
825
|
+
|
|
826
|
+
Bump stefanzweifel/git-auto-commit-action from 4 to 5
|
|
827
|
+
- Bump stefanzweifel/git-auto-commit-action from 4 to 5.
|
|
828
|
+
[dependabot[bot]]
|
|
829
|
+
|
|
830
|
+
Bumps [stefanzweifel/git-auto-commit-action](https://github.com/stefanzweifel/git-auto-commit-action) from 4 to 5.
|
|
831
|
+
- [Release notes](https://github.com/stefanzweifel/git-auto-commit-action/releases)
|
|
832
|
+
- [Changelog](https://github.com/stefanzweifel/git-auto-commit-action/blob/master/CHANGELOG.md)
|
|
833
|
+
- [Commits](https://github.com/stefanzweifel/git-auto-commit-action/compare/v4...v5)
|
|
834
|
+
|
|
835
|
+
---
|
|
836
|
+
updated-dependencies:
|
|
837
|
+
- dependency-name: stefanzweifel/git-auto-commit-action
|
|
838
|
+
dependency-type: direct:production
|
|
839
|
+
update-type: version-update:semver-major
|
|
840
|
+
...
|
|
841
|
+
- Merge pull request #5 from xinglong-
|
|
842
|
+
zhang/dependabot/github_actions/codecov/codecov-action-4. [Xinglong
|
|
843
|
+
Zhang]
|
|
844
|
+
|
|
845
|
+
Bump codecov/codecov-action from 3 to 4
|
|
846
|
+
- Bump codecov/codecov-action from 3 to 4. [dependabot[bot]]
|
|
847
|
+
|
|
848
|
+
Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 3 to 4.
|
|
849
|
+
- [Release notes](https://github.com/codecov/codecov-action/releases)
|
|
850
|
+
- [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md)
|
|
851
|
+
- [Commits](https://github.com/codecov/codecov-action/compare/v3...v4)
|
|
852
|
+
|
|
853
|
+
---
|
|
854
|
+
updated-dependencies:
|
|
855
|
+
- dependency-name: codecov/codecov-action
|
|
856
|
+
dependency-type: direct:production
|
|
857
|
+
update-type: version-update:semver-major
|
|
858
|
+
...
|
|
859
|
+
- Merge pull request #2 from xinglong-
|
|
860
|
+
zhang/dependabot/github_actions/softprops/action-gh-release-2.
|
|
861
|
+
[Xinglong Zhang]
|
|
862
|
+
|
|
863
|
+
Bump softprops/action-gh-release from 1 to 2
|
|
864
|
+
- Bump softprops/action-gh-release from 1 to 2. [dependabot[bot]]
|
|
865
|
+
|
|
866
|
+
Bumps [softprops/action-gh-release](https://github.com/softprops/action-gh-release) from 1 to 2.
|
|
867
|
+
- [Release notes](https://github.com/softprops/action-gh-release/releases)
|
|
868
|
+
- [Changelog](https://github.com/softprops/action-gh-release/blob/master/CHANGELOG.md)
|
|
869
|
+
- [Commits](https://github.com/softprops/action-gh-release/compare/v1...v2)
|
|
870
|
+
|
|
871
|
+
---
|
|
872
|
+
updated-dependencies:
|
|
873
|
+
- dependency-name: softprops/action-gh-release
|
|
874
|
+
dependency-type: direct:production
|
|
875
|
+
update-type: version-update:semver-major
|
|
876
|
+
...
|
|
877
|
+
- Merge pull request #1 from xinglong-
|
|
878
|
+
zhang/dependabot/github_actions/actions/checkout-4. [Xinglong Zhang]
|
|
879
|
+
|
|
880
|
+
Bump actions/checkout from 3 to 4
|
|
881
|
+
- Bump actions/checkout from 3 to 4. [dependabot[bot]]
|
|
882
|
+
|
|
883
|
+
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4.
|
|
884
|
+
- [Release notes](https://github.com/actions/checkout/releases)
|
|
885
|
+
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
|
|
886
|
+
- [Commits](https://github.com/actions/checkout/compare/v3...v4)
|
|
887
|
+
|
|
888
|
+
---
|
|
889
|
+
updated-dependencies:
|
|
890
|
+
- dependency-name: actions/checkout
|
|
891
|
+
dependency-type: direct:production
|
|
892
|
+
update-type: version-update:semver-major
|
|
893
|
+
...
|
|
894
|
+
- Update readme. [Xinglong Zhang]
|
|
895
|
+
- Merge pull request #6 from xinglong-zhang/ct. [Xinglong Zhang]
|
|
896
|
+
|
|
897
|
+
Ct
|
|
898
|
+
- Readme chemsmart to pychemsmart. [Xinglong Zhang]
|
|
899
|
+
- Readme chemsmart to pychemsmart. [Xinglong Zhang]
|
|
900
|
+
- Initial commit. [Xinglong Zhang]
|
|
901
|
+
- ✅ Ready to clone and code. [xinglong-zhang]
|
|
902
|
+
- Initial commit. [Xinglong Zhang]
|
|
903
|
+
|
|
904
|
+
|