gamsapi 52.2.0__tar.gz → 52.4.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.
Files changed (364) hide show
  1. {gamsapi-52.2.0 → gamsapi-52.4.0}/LICENSE +2 -2
  2. {gamsapi-52.2.0 → gamsapi-52.4.0}/PKG-INFO +12 -10
  3. gamsapi-52.4.0/VERSION +1 -0
  4. {gamsapi-52.2.0 → gamsapi-52.4.0}/setup.py +3 -3
  5. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/__init__.py +2 -2
  6. gamsapi-52.4.0/src/gams/_version.py +1 -0
  7. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/connect/__init__.py +2 -2
  8. {gamsapi-52.2.0/src/gams/transfer/syms/_methods → gamsapi-52.4.0/src/gams/connect/agents}/__init__.py +2 -2
  9. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/connect/agents/_excel/__init__.py +2 -2
  10. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/connect/agents/_excel/excelagent.py +2 -2
  11. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/connect/agents/_excel/workbook.py +2 -2
  12. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/connect/agents/_sqlconnectors/__init__.py +2 -2
  13. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/connect/agents/_sqlconnectors/_accesshandler.py +2 -2
  14. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/connect/agents/_sqlconnectors/_databasehandler.py +2 -2
  15. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/connect/agents/_sqlconnectors/_mysqlhandler.py +2 -2
  16. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/connect/agents/_sqlconnectors/_postgreshandler.py +2 -2
  17. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/connect/agents/_sqlconnectors/_pyodbchandler.py +2 -2
  18. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/connect/agents/_sqlconnectors/_sqlalchemyhandler.py +2 -2
  19. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/connect/agents/_sqlconnectors/_sqlitehandler.py +2 -2
  20. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/connect/agents/_sqlconnectors/_sqlserverhandler.py +2 -2
  21. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/connect/agents/concatenate.py +2 -2
  22. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/connect/agents/connectagent.py +2 -2
  23. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/connect/agents/csvreader.py +2 -2
  24. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/connect/agents/csvwriter.py +2 -2
  25. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/connect/agents/domainwriter.py +2 -2
  26. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/connect/agents/excelreader.py +2 -2
  27. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/connect/agents/excelwriter.py +2 -2
  28. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/connect/agents/filter.py +2 -2
  29. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/connect/agents/gamsreader.py +2 -2
  30. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/connect/agents/gamswriter.py +2 -2
  31. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/connect/agents/gdxreader.py +2 -2
  32. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/connect/agents/gdxwriter.py +2 -2
  33. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/connect/agents/labelmanipulator.py +2 -2
  34. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/connect/agents/projection.py +2 -2
  35. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/connect/agents/pythoncode.py +2 -2
  36. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/connect/agents/rawcsvreader.py +2 -2
  37. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/connect/agents/rawexcelreader.py +2 -2
  38. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/connect/agents/sqlreader.py +2 -2
  39. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/connect/agents/sqlwriter.py +2 -2
  40. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/connect/connectdatabase.py +2 -2
  41. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/connect/connectvalidator.py +2 -2
  42. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/connect/errors.py +2 -2
  43. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/control/__init__.py +2 -2
  44. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/control/database.py +2 -2
  45. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/control/execution.py +2 -2
  46. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/control/options.py +2 -2
  47. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/control/workspace.py +2 -2
  48. {gamsapi-52.2.0/src/gams/core/emp → gamsapi-52.4.0/src/gams/core}/__init__.py +2 -2
  49. {gamsapi-52.2.0/src/gams/core/dct → gamsapi-52.4.0/src/gams/core/cfg}/__init__.py +3 -3
  50. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/core/cfg/cfgmcc.c +2 -2
  51. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/core/cfg/cfgmcc.h +2 -2
  52. {gamsapi-52.2.0/src/gams/core/cfg → gamsapi-52.4.0/src/gams/core/dct}/__init__.py +3 -3
  53. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/core/dct/dctmcc.c +2 -2
  54. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/core/dct/dctmcc.h +2 -2
  55. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/core/embedded/__init__.py +2 -2
  56. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/core/embedded/gamsemb.py +2 -2
  57. {gamsapi-52.2.0/src/gams/tools/toolcollection → gamsapi-52.4.0/src/gams/core/emp}/__init__.py +2 -2
  58. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/core/emp/emplexer.py +2 -2
  59. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/core/emp/empyacc.py +2 -2
  60. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/core/gdx/__init__.py +2 -2
  61. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/core/gdx/gdxcc.c +2 -2
  62. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/core/gdx/gdxcc.h +2 -2
  63. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/core/gev/__init__.py +2 -2
  64. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/core/gev/gevmcc.c +2 -2
  65. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/core/gev/gevmcc.h +2 -2
  66. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/core/gmd/__init__.py +2 -2
  67. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/core/gmd/gmdcc.c +2 -2
  68. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/core/gmd/gmdcc.h +2 -2
  69. gamsapi-52.4.0/src/gams/core/gmo/__init__.py +26 -0
  70. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/core/gmo/gmomcc.c +2 -2
  71. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/core/gmo/gmomcc.h +2 -2
  72. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/core/idx/__init__.py +2 -2
  73. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/core/idx/idxcc.c +2 -2
  74. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/core/idx/idxcc.h +2 -2
  75. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/core/numpy/__init__.py +2 -2
  76. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/core/numpy/_gams2numpy.c +2 -2
  77. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/core/numpy/gams2numpy.py +2 -2
  78. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/core/opt/__init__.py +2 -2
  79. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/core/opt/optcc.c +2 -2
  80. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/core/opt/optcc.h +2 -2
  81. gamsapi-52.4.0/src/gams/engine/__init__.py +204 -0
  82. {gamsapi-52.2.0/src/gams/engine/apis → gamsapi-52.4.0/src/gams/engine/api}/__init__.py +2 -14
  83. gamsapi-52.4.0/src/gams/engine/api/auth_api.py +7653 -0
  84. gamsapi-52.4.0/src/gams/engine/api/cleanup_api.py +751 -0
  85. gamsapi-52.4.0/src/gams/engine/api/default_api.py +887 -0
  86. gamsapi-52.4.0/src/gams/engine/api/hypercube_api.py +2629 -0
  87. gamsapi-52.4.0/src/gams/engine/api/jobs_api.py +5229 -0
  88. gamsapi-52.4.0/src/gams/engine/api/licenses_api.py +2220 -0
  89. gamsapi-52.4.0/src/gams/engine/api/namespaces_api.py +7783 -0
  90. gamsapi-52.4.0/src/gams/engine/api/usage_api.py +5627 -0
  91. gamsapi-52.4.0/src/gams/engine/api/users_api.py +5931 -0
  92. gamsapi-52.4.0/src/gams/engine/api_client.py +804 -0
  93. gamsapi-52.4.0/src/gams/engine/api_response.py +21 -0
  94. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/engine/configuration.py +233 -102
  95. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/engine/exceptions.py +86 -29
  96. gamsapi-52.4.0/src/gams/engine/models/__init__.py +86 -0
  97. gamsapi-52.4.0/src/gams/engine/models/bad_input.py +89 -0
  98. gamsapi-52.4.0/src/gams/engine/models/cleanable_job_result.py +104 -0
  99. gamsapi-52.4.0/src/gams/engine/models/cleanable_job_result_page.py +113 -0
  100. gamsapi-52.4.0/src/gams/engine/models/engine_license.py +107 -0
  101. gamsapi-52.4.0/src/gams/engine/models/files_not_found.py +93 -0
  102. gamsapi-52.4.0/src/gams/engine/models/forwarded_token_response.py +112 -0
  103. gamsapi-52.4.0/src/gams/engine/models/generic_key_value_pair.py +89 -0
  104. gamsapi-52.4.0/src/gams/engine/models/hypercube.py +160 -0
  105. gamsapi-52.4.0/src/gams/engine/models/hypercube_page.py +111 -0
  106. gamsapi-52.4.0/src/gams/engine/models/hypercube_summary.py +91 -0
  107. gamsapi-52.4.0/src/gams/engine/models/hypercube_token.py +97 -0
  108. gamsapi-52.4.0/src/gams/engine/models/identity_provider.py +107 -0
  109. gamsapi-52.4.0/src/gams/engine/models/identity_provider_ldap.py +121 -0
  110. gamsapi-52.4.0/src/gams/engine/models/identity_provider_oauth2.py +146 -0
  111. gamsapi-52.4.0/src/gams/engine/models/identity_provider_oauth2_scope.py +89 -0
  112. gamsapi-52.4.0/src/gams/engine/models/identity_provider_oauth2_with_secret.py +152 -0
  113. gamsapi-52.4.0/src/gams/engine/models/identity_provider_oidc.py +133 -0
  114. gamsapi-52.4.0/src/gams/engine/models/identity_provider_oidc_with_secret.py +143 -0
  115. gamsapi-52.4.0/src/gams/engine/models/inex.py +91 -0
  116. gamsapi-52.4.0/src/gams/engine/models/invitation.py +136 -0
  117. gamsapi-52.4.0/src/gams/engine/models/invitation_quota.py +106 -0
  118. gamsapi-52.4.0/src/gams/engine/models/invitation_token.py +87 -0
  119. gamsapi-52.4.0/src/gams/engine/models/job.py +165 -0
  120. gamsapi-52.4.0/src/gams/engine/models/job_no_text_entry.py +138 -0
  121. gamsapi-52.4.0/src/gams/engine/models/job_no_text_entry_page.py +111 -0
  122. gamsapi-52.4.0/src/gams/engine/models/license.py +91 -0
  123. gamsapi-52.4.0/src/gams/engine/models/log_piece.py +96 -0
  124. gamsapi-52.4.0/src/gams/engine/models/message.py +87 -0
  125. gamsapi-52.4.0/src/gams/engine/models/message_and_token.py +99 -0
  126. gamsapi-52.4.0/src/gams/engine/models/message_with_webhook_id.py +89 -0
  127. gamsapi-52.4.0/src/gams/engine/models/model_auth_token.py +87 -0
  128. gamsapi-52.4.0/src/gams/engine/models/model_configuration.py +125 -0
  129. gamsapi-52.4.0/src/gams/engine/models/model_default_instance.py +99 -0
  130. gamsapi-52.4.0/src/gams/engine/models/model_default_user_instance.py +98 -0
  131. gamsapi-52.4.0/src/gams/engine/models/model_hypercube_job.py +106 -0
  132. gamsapi-52.4.0/src/gams/engine/models/model_hypercube_usage.py +130 -0
  133. gamsapi-52.4.0/src/gams/engine/models/model_instance_info.py +116 -0
  134. gamsapi-52.4.0/src/gams/engine/models/model_instance_info_full.py +123 -0
  135. gamsapi-52.4.0/src/gams/engine/models/model_instance_pool_info.py +112 -0
  136. gamsapi-52.4.0/src/gams/engine/models/model_job_labels.py +179 -0
  137. gamsapi-52.4.0/src/gams/engine/models/model_job_usage.py +133 -0
  138. gamsapi-52.4.0/src/gams/engine/models/model_pool_usage.py +124 -0
  139. gamsapi-52.4.0/src/gams/engine/models/model_usage.py +115 -0
  140. gamsapi-52.4.0/src/gams/engine/models/model_user.py +96 -0
  141. gamsapi-52.4.0/src/gams/engine/models/model_userinstance_info.py +119 -0
  142. gamsapi-52.4.0/src/gams/engine/models/model_userinstancepool_info.py +95 -0
  143. gamsapi-52.4.0/src/gams/engine/models/model_version.py +91 -0
  144. gamsapi-52.4.0/src/gams/engine/models/models.py +120 -0
  145. gamsapi-52.4.0/src/gams/engine/models/namespace.py +104 -0
  146. gamsapi-52.4.0/src/gams/engine/models/namespace_quota.py +96 -0
  147. gamsapi-52.4.0/src/gams/engine/models/namespace_with_permission.py +96 -0
  148. gamsapi-52.4.0/src/gams/engine/models/not_found.py +91 -0
  149. gamsapi-52.4.0/src/gams/engine/models/password_policy.py +97 -0
  150. gamsapi-52.4.0/src/gams/engine/models/perm_and_username.py +89 -0
  151. gamsapi-52.4.0/src/gams/engine/models/quota.py +117 -0
  152. gamsapi-52.4.0/src/gams/engine/models/quota_exceeded.py +97 -0
  153. gamsapi-52.4.0/src/gams/engine/models/status_code_meaning.py +89 -0
  154. gamsapi-52.4.0/src/gams/engine/models/stream_entry.py +89 -0
  155. gamsapi-52.4.0/src/gams/engine/models/system_wide_license.py +92 -0
  156. gamsapi-52.4.0/src/gams/engine/models/text_entries.py +87 -0
  157. gamsapi-52.4.0/src/gams/engine/models/text_entry.py +101 -0
  158. gamsapi-52.4.0/src/gams/engine/models/time_span.py +95 -0
  159. gamsapi-52.4.0/src/gams/engine/models/time_span_pool_worker.py +99 -0
  160. gamsapi-52.4.0/src/gams/engine/models/token_forward_error.py +87 -0
  161. gamsapi-52.4.0/src/gams/engine/models/user.py +127 -0
  162. gamsapi-52.4.0/src/gams/engine/models/user_group_member.py +96 -0
  163. gamsapi-52.4.0/src/gams/engine/models/user_groups.py +108 -0
  164. gamsapi-52.4.0/src/gams/engine/models/vapid_info.py +87 -0
  165. gamsapi-52.4.0/src/gams/engine/models/webhook.py +138 -0
  166. gamsapi-52.4.0/src/gams/engine/models/webhook_parameterized_event.py +99 -0
  167. gamsapi-52.4.0/src/gams/engine/py.typed +0 -0
  168. gamsapi-52.4.0/src/gams/engine/rest.py +258 -0
  169. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/magic/__init__.py +2 -2
  170. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/magic/gams_magic.py +2 -2
  171. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/magic/interactive.py +2 -2
  172. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/tools/__init__.py +2 -2
  173. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/tools/errors.py +2 -2
  174. {gamsapi-52.2.0/src/gams/tools/toolcollection/alg → gamsapi-52.4.0/src/gams/tools/toolcollection}/__init__.py +2 -2
  175. {gamsapi-52.2.0/src/gams/core → gamsapi-52.4.0/src/gams/tools/toolcollection/alg}/__init__.py +2 -2
  176. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/tools/toolcollection/alg/rank.py +2 -2
  177. gamsapi-52.4.0/src/gams/tools/toolcollection/data/__init__.py +24 -0
  178. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/tools/toolcollection/data/csvread.py +2 -2
  179. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/tools/toolcollection/data/exceldump.py +2 -2
  180. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/tools/toolcollection/data/sqlitewrite.py +2 -2
  181. gamsapi-52.4.0/src/gams/tools/toolcollection/gdxservice/__init__.py +24 -0
  182. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/tools/toolcollection/gdxservice/gdxencoding.py +2 -2
  183. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/tools/toolcollection/gdxservice/gdxrename.py +2 -2
  184. gamsapi-52.4.0/src/gams/tools/toolcollection/linalg/__init__.py +24 -0
  185. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/tools/toolcollection/linalg/cholesky.py +2 -2
  186. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/tools/toolcollection/linalg/eigenvalue.py +2 -2
  187. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/tools/toolcollection/linalg/eigenvector.py +2 -2
  188. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/tools/toolcollection/linalg/invert.py +2 -2
  189. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/tools/toolcollection/linalg/ols.py +2 -2
  190. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/tools/toolcollection/tooltemplate.py +2 -2
  191. gamsapi-52.4.0/src/gams/tools/toolcollection/win32/__init__.py +24 -0
  192. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/tools/toolcollection/win32/excelmerge.py +2 -2
  193. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/tools/toolcollection/win32/exceltalk.py +2 -2
  194. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/tools/toolcollection/win32/msappavail.py +2 -2
  195. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/tools/toolcollection/win32/shellexecute.py +2 -2
  196. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/tools/tools.py +2 -2
  197. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/transfer/__init__.py +2 -2
  198. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/transfer/_abcs/__init__.py +2 -2
  199. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/transfer/_abcs/container_abcs.py +2 -2
  200. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/transfer/_internals/__init__.py +2 -2
  201. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/transfer/_internals/algorithms.py +2 -2
  202. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/transfer/_internals/casepreservingdict.py +2 -2
  203. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/transfer/_internals/constants.py +2 -2
  204. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/transfer/_internals/domainviolation.py +2 -2
  205. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/transfer/_internals/specialvalues.py +2 -2
  206. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/transfer/containers/__init__.py +2 -2
  207. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/transfer/containers/_container.py +2 -2
  208. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/transfer/containers/_io/__init__.py +2 -2
  209. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/transfer/containers/_io/containers.py +2 -2
  210. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/transfer/containers/_io/gdx.py +2 -2
  211. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/transfer/containers/_io/gmd.py +2 -2
  212. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/transfer/containers/_mixins/__init__.py +2 -2
  213. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/transfer/containers/_mixins/ccc.py +2 -2
  214. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/transfer/syms/__init__.py +2 -2
  215. {gamsapi-52.2.0/src/gams/connect/agents → gamsapi-52.4.0/src/gams/transfer/syms/_methods}/__init__.py +2 -2
  216. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/transfer/syms/_methods/tables.py +2 -2
  217. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/transfer/syms/_methods/toDict.py +2 -2
  218. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/transfer/syms/_methods/toList.py +2 -2
  219. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/transfer/syms/_methods/toValue.py +2 -2
  220. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/transfer/syms/_mixins/__init__.py +2 -2
  221. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/transfer/syms/_mixins/equals.py +2 -2
  222. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/transfer/syms/_mixins/generateRecords.py +2 -2
  223. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/transfer/syms/_mixins/pivot.py +2 -2
  224. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/transfer/syms/_mixins/pve.py +2 -2
  225. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/transfer/syms/_mixins/sa.py +2 -2
  226. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/transfer/syms/_mixins/sapve.py +2 -2
  227. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/transfer/syms/_mixins/saua.py +2 -2
  228. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/transfer/syms/_mixins/sauapve.py +2 -2
  229. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/transfer/syms/_mixins/spve.py +2 -2
  230. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/transfer/syms/_mixins/ve.py +2 -2
  231. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/transfer/syms/container_syms/__init__.py +2 -2
  232. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/transfer/syms/container_syms/_alias.py +2 -2
  233. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/transfer/syms/container_syms/_equation.py +2 -2
  234. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/transfer/syms/container_syms/_parameter.py +2 -2
  235. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/transfer/syms/container_syms/_set.py +2 -2
  236. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/transfer/syms/container_syms/_universe_alias.py +2 -2
  237. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/transfer/syms/container_syms/_variable.py +2 -2
  238. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gamsapi.egg-info/PKG-INFO +12 -10
  239. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gamsapi.egg-info/SOURCES.txt +72 -63
  240. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gamsapi.egg-info/requires.txt +11 -9
  241. gamsapi-52.2.0/VERSION +0 -1
  242. gamsapi-52.2.0/src/gams/_version.py +0 -1
  243. gamsapi-52.2.0/src/gams/core/gmo/__init__.py +0 -26
  244. gamsapi-52.2.0/src/gams/engine/__init__.py +0 -27
  245. gamsapi-52.2.0/src/gams/engine/api/__init__.py +0 -3
  246. gamsapi-52.2.0/src/gams/engine/api/auth_api.py +0 -3726
  247. gamsapi-52.2.0/src/gams/engine/api/cleanup_api.py +0 -359
  248. gamsapi-52.2.0/src/gams/engine/api/default_api.py +0 -418
  249. gamsapi-52.2.0/src/gams/engine/api/hypercube_api.py +0 -1251
  250. gamsapi-52.2.0/src/gams/engine/api/jobs_api.py +0 -2517
  251. gamsapi-52.2.0/src/gams/engine/api/licenses_api.py +0 -1064
  252. gamsapi-52.2.0/src/gams/engine/api/namespaces_api.py +0 -3677
  253. gamsapi-52.2.0/src/gams/engine/api/usage_api.py +0 -1919
  254. gamsapi-52.2.0/src/gams/engine/api/users_api.py +0 -2433
  255. gamsapi-52.2.0/src/gams/engine/api_client.py +0 -866
  256. gamsapi-52.2.0/src/gams/engine/model/__init__.py +0 -5
  257. gamsapi-52.2.0/src/gams/engine/model/bad_input.py +0 -259
  258. gamsapi-52.2.0/src/gams/engine/model/cleanable_job_result.py +0 -285
  259. gamsapi-52.2.0/src/gams/engine/model/cleanable_job_result_page.py +0 -277
  260. gamsapi-52.2.0/src/gams/engine/model/engine_license.py +0 -263
  261. gamsapi-52.2.0/src/gams/engine/model/files_not_found.py +0 -267
  262. gamsapi-52.2.0/src/gams/engine/model/forwarded_token_response.py +0 -275
  263. gamsapi-52.2.0/src/gams/engine/model/generic_key_value_pair.py +0 -259
  264. gamsapi-52.2.0/src/gams/engine/model/hypercube.py +0 -331
  265. gamsapi-52.2.0/src/gams/engine/model/hypercube_page.py +0 -273
  266. gamsapi-52.2.0/src/gams/engine/model/hypercube_summary.py +0 -263
  267. gamsapi-52.2.0/src/gams/engine/model/hypercube_token.py +0 -265
  268. gamsapi-52.2.0/src/gams/engine/model/identity_provider.py +0 -287
  269. gamsapi-52.2.0/src/gams/engine/model/identity_provider_ldap.py +0 -303
  270. gamsapi-52.2.0/src/gams/engine/model/identity_provider_oauth2.py +0 -309
  271. gamsapi-52.2.0/src/gams/engine/model/identity_provider_oauth2_scope.py +0 -259
  272. gamsapi-52.2.0/src/gams/engine/model/identity_provider_oauth2_with_secret.py +0 -321
  273. gamsapi-52.2.0/src/gams/engine/model/identity_provider_oidc.py +0 -299
  274. gamsapi-52.2.0/src/gams/engine/model/identity_provider_oidc_with_secret.py +0 -319
  275. gamsapi-52.2.0/src/gams/engine/model/inex.py +0 -259
  276. gamsapi-52.2.0/src/gams/engine/model/invitation.py +0 -309
  277. gamsapi-52.2.0/src/gams/engine/model/invitation_quota.py +0 -263
  278. gamsapi-52.2.0/src/gams/engine/model/invitation_token.py +0 -255
  279. gamsapi-52.2.0/src/gams/engine/model/job.py +0 -337
  280. gamsapi-52.2.0/src/gams/engine/model/job_no_text_entry.py +0 -313
  281. gamsapi-52.2.0/src/gams/engine/model/job_no_text_entry_page.py +0 -273
  282. gamsapi-52.2.0/src/gams/engine/model/license.py +0 -263
  283. gamsapi-52.2.0/src/gams/engine/model/log_piece.py +0 -263
  284. gamsapi-52.2.0/src/gams/engine/model/message.py +0 -255
  285. gamsapi-52.2.0/src/gams/engine/model/message_and_token.py +0 -269
  286. gamsapi-52.2.0/src/gams/engine/model/model_auth_token.py +0 -255
  287. gamsapi-52.2.0/src/gams/engine/model/model_configuration.py +0 -268
  288. gamsapi-52.2.0/src/gams/engine/model/model_hypercube_job.py +0 -273
  289. gamsapi-52.2.0/src/gams/engine/model/model_hypercube_usage.py +0 -303
  290. gamsapi-52.2.0/src/gams/engine/model/model_instance_info.py +0 -285
  291. gamsapi-52.2.0/src/gams/engine/model/model_instance_info_full.py +0 -289
  292. gamsapi-52.2.0/src/gams/engine/model/model_job_labels.py +0 -295
  293. gamsapi-52.2.0/src/gams/engine/model/model_job_usage.py +0 -299
  294. gamsapi-52.2.0/src/gams/engine/model/model_usage.py +0 -267
  295. gamsapi-52.2.0/src/gams/engine/model/model_userinstance_info.py +0 -273
  296. gamsapi-52.2.0/src/gams/engine/model/model_version.py +0 -263
  297. gamsapi-52.2.0/src/gams/engine/model/models.py +0 -297
  298. gamsapi-52.2.0/src/gams/engine/model/namespace.py +0 -269
  299. gamsapi-52.2.0/src/gams/engine/model/namespace_quota.py +0 -263
  300. gamsapi-52.2.0/src/gams/engine/model/namespace_with_permission.py +0 -263
  301. gamsapi-52.2.0/src/gams/engine/model/not_found.py +0 -263
  302. gamsapi-52.2.0/src/gams/engine/model/perm_and_username.py +0 -259
  303. gamsapi-52.2.0/src/gams/engine/model/quota.py +0 -275
  304. gamsapi-52.2.0/src/gams/engine/model/quota_exceeded.py +0 -265
  305. gamsapi-52.2.0/src/gams/engine/model/result_user.py +0 -263
  306. gamsapi-52.2.0/src/gams/engine/model/status_code_meaning.py +0 -259
  307. gamsapi-52.2.0/src/gams/engine/model/stream_entry.py +0 -259
  308. gamsapi-52.2.0/src/gams/engine/model/system_wide_license.py +0 -255
  309. gamsapi-52.2.0/src/gams/engine/model/text_entries.py +0 -255
  310. gamsapi-52.2.0/src/gams/engine/model/text_entry.py +0 -263
  311. gamsapi-52.2.0/src/gams/engine/model/time_span.py +0 -259
  312. gamsapi-52.2.0/src/gams/engine/model/token_forward_error.py +0 -255
  313. gamsapi-52.2.0/src/gams/engine/model/user.py +0 -283
  314. gamsapi-52.2.0/src/gams/engine/model/user_group_member.py +0 -269
  315. gamsapi-52.2.0/src/gams/engine/model/user_groups.py +0 -279
  316. gamsapi-52.2.0/src/gams/engine/model/webhook.py +0 -292
  317. gamsapi-52.2.0/src/gams/engine/model_utils.py +0 -2037
  318. gamsapi-52.2.0/src/gams/engine/models/__init__.py +0 -71
  319. gamsapi-52.2.0/src/gams/engine/rest.py +0 -346
  320. gamsapi-52.2.0/src/gams/tools/toolcollection/data/__init__.py +0 -24
  321. gamsapi-52.2.0/src/gams/tools/toolcollection/gdxservice/__init__.py +0 -24
  322. gamsapi-52.2.0/src/gams/tools/toolcollection/linalg/__init__.py +0 -24
  323. gamsapi-52.2.0/src/gams/tools/toolcollection/win32/__init__.py +0 -24
  324. {gamsapi-52.2.0 → gamsapi-52.4.0}/MANIFEST.in +0 -0
  325. {gamsapi-52.2.0 → gamsapi-52.4.0}/pyproject.toml +0 -0
  326. {gamsapi-52.2.0 → gamsapi-52.4.0}/setup.cfg +0 -0
  327. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/connect/agents/schema/CSVReader.yaml +0 -0
  328. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/connect/agents/schema/CSVWriter.yaml +0 -0
  329. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/connect/agents/schema/Concatenate.yaml +0 -0
  330. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/connect/agents/schema/DomainWriter.yaml +0 -0
  331. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/connect/agents/schema/ExcelReader.yaml +0 -0
  332. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/connect/agents/schema/ExcelWriter.yaml +0 -0
  333. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/connect/agents/schema/Filter.yaml +0 -0
  334. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/connect/agents/schema/GAMSReader.yaml +0 -0
  335. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/connect/agents/schema/GAMSWriter.yaml +0 -0
  336. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/connect/agents/schema/GDXReader.yaml +0 -0
  337. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/connect/agents/schema/GDXWriter.yaml +0 -0
  338. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/connect/agents/schema/LabelManipulator.yaml +0 -0
  339. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/connect/agents/schema/Projection.yaml +0 -0
  340. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/connect/agents/schema/PythonCode.yaml +0 -0
  341. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/connect/agents/schema/RawCSVReader.yaml +0 -0
  342. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/connect/agents/schema/RawExcelReader.yaml +0 -0
  343. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/connect/agents/schema/SQLReader.yaml +0 -0
  344. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/connect/agents/schema/SQLWriter.yaml +0 -0
  345. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/core/cfg/cfgmcc.py +0 -0
  346. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/core/cfg/cfgmcc_wrap.c +0 -0
  347. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/core/dct/dctmcc.py +0 -0
  348. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/core/dct/dctmcc_wrap.c +0 -0
  349. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/core/gclgms.h +0 -0
  350. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/core/gdx/gdxcc.py +0 -0
  351. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/core/gdx/gdxcc_wrap.c +0 -0
  352. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/core/gev/gevmcc.py +0 -0
  353. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/core/gev/gevmcc_wrap.c +0 -0
  354. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/core/gmd/gmdcc.py +0 -0
  355. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/core/gmd/gmdcc_wrap.c +0 -0
  356. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/core/gmo/gmomcc.py +0 -0
  357. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/core/gmo/gmomcc_wrap.c +0 -0
  358. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/core/idx/idxcc.py +0 -0
  359. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/core/idx/idxcc_wrap.c +0 -0
  360. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/core/opt/optcc.py +0 -0
  361. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/core/opt/optcc_wrap.c +0 -0
  362. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gams/tools/toolcollection/data/csvwrite.py +0 -0
  363. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gamsapi.egg-info/dependency_links.txt +0 -0
  364. {gamsapi-52.2.0 → gamsapi-52.4.0}/src/gamsapi.egg-info/top_level.txt +0 -0
@@ -1,7 +1,7 @@
1
1
  GAMS - General Algebraic Modeling System Python API
2
2
 
3
- Copyright (c) 2017-2025 GAMS Development Corp. <support@gams.com>
4
- Copyright (c) 2017-2025 GAMS Software GmbH <support@gams.com>
3
+ Copyright (c) 2017-2026 GAMS Development Corp. <support@gams.com>
4
+ Copyright (c) 2017-2026 GAMS Software GmbH <support@gams.com>
5
5
 
6
6
  Permission is hereby granted, free of charge, to any person obtaining a copy
7
7
  of this software and associated documentation files (the "Software"), to deal
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: gamsapi
3
- Version: 52.2.0
3
+ Version: 52.4.0
4
4
  Summary: GAMS Python API
5
5
  Home-page: https://www.gams.com/
6
6
  Author: GAMS Development Corporation
@@ -40,6 +40,7 @@ Provides-Extra: core
40
40
  Requires-Dist: ply; extra == "core"
41
41
  Requires-Dist: numpy; extra == "core"
42
42
  Provides-Extra: engine
43
+ Requires-Dist: pydantic; extra == "engine"
43
44
  Requires-Dist: python_dateutil; extra == "engine"
44
45
  Requires-Dist: urllib3; extra == "engine"
45
46
  Provides-Extra: magic
@@ -51,22 +52,23 @@ Provides-Extra: transfer
51
52
  Requires-Dist: pandas<2.4,>=2.2.2; extra == "transfer"
52
53
  Requires-Dist: scipy; extra == "transfer"
53
54
  Provides-Extra: all
54
- Requires-Dist: pyyaml; extra == "all"
55
+ Requires-Dist: pymysql; extra == "all"
56
+ Requires-Dist: certifi; extra == "all"
55
57
  Requires-Dist: python_dateutil; extra == "all"
56
- Requires-Dist: pandas<2.4,>=2.2.2; extra == "all"
57
- Requires-Dist: pyodbc; extra == "all"
58
+ Requires-Dist: pymssql; extra == "all"
58
59
  Requires-Dist: ipython; extra == "all"
59
- Requires-Dist: psycopg2-binary; extra == "all"
60
60
  Requires-Dist: numpy; extra == "all"
61
- Requires-Dist: certifi; extra == "all"
62
61
  Requires-Dist: scipy; extra == "all"
62
+ Requires-Dist: pyyaml; extra == "all"
63
63
  Requires-Dist: openpyxl>=3.1.0; extra == "all"
64
- Requires-Dist: pymysql; extra == "all"
64
+ Requires-Dist: urllib3; extra == "all"
65
+ Requires-Dist: pydantic; extra == "all"
65
66
  Requires-Dist: sqlalchemy; extra == "all"
66
- Requires-Dist: cerberus; extra == "all"
67
67
  Requires-Dist: ply; extra == "all"
68
- Requires-Dist: urllib3; extra == "all"
69
- Requires-Dist: pymssql; extra == "all"
68
+ Requires-Dist: psycopg2-binary; extra == "all"
69
+ Requires-Dist: pyodbc; extra == "all"
70
+ Requires-Dist: pandas<2.4,>=2.2.2; extra == "all"
71
+ Requires-Dist: cerberus; extra == "all"
70
72
  Dynamic: author
71
73
  Dynamic: author-email
72
74
  Dynamic: classifier
gamsapi-52.4.0/VERSION ADDED
@@ -0,0 +1 @@
1
+ 52.4.0
@@ -2,8 +2,8 @@
2
2
  #
3
3
  # GAMS - General Algebraic Modeling System Python API
4
4
  #
5
- # Copyright (c) 2016-2025 GAMS Software GmbH <support@gams.com>
6
- # Copyright (c) 2016-2025 GAMS Development Corp. <support@gams.com>
5
+ # Copyright (c) 2016-2026 GAMS Software GmbH <support@gams.com>
6
+ # Copyright (c) 2016-2026 GAMS Development Corp. <support@gams.com>
7
7
  #
8
8
  # Permission is hereby granted, free of charge, to any person obtaining a copy
9
9
  # of this software and associated documentation files (the "Software"), to deal
@@ -47,7 +47,7 @@ EXTRAS = {
47
47
  ],
48
48
  "control": ["certifi", "urllib3"],
49
49
  "core": ["ply", "numpy"],
50
- "engine": ["python_dateutil", "urllib3"],
50
+ "engine": ["pydantic", "python_dateutil", "urllib3"],
51
51
  "magic": ["ipython", "pandas>=2.2.2,<2.4"],
52
52
  "tools": ["pandas>=2.2.2,<2.4"],
53
53
  "transfer": ["pandas>=2.2.2,<2.4", "scipy"],
@@ -1,8 +1,8 @@
1
1
  #
2
2
  # GAMS - General Algebraic Modeling System Python API
3
3
  #
4
- # Copyright (c) 2017-2025 GAMS Development Corp. <support@gams.com>
5
- # Copyright (c) 2017-2025 GAMS Software GmbH <support@gams.com>
4
+ # Copyright (c) 2017-2026 GAMS Development Corp. <support@gams.com>
5
+ # Copyright (c) 2017-2026 GAMS Software GmbH <support@gams.com>
6
6
  #
7
7
  # Permission is hereby granted, free of charge, to any person obtaining a copy
8
8
  # of this software and associated documentation files (the "Software"), to deal
@@ -0,0 +1 @@
1
+ __version__ = "52.4.0"
@@ -1,8 +1,8 @@
1
1
  #
2
2
  # GAMS - General Algebraic Modeling System Python API
3
3
  #
4
- # Copyright (c) 2017-2025 GAMS Development Corp. <support@gams.com>
5
- # Copyright (c) 2017-2025 GAMS Software GmbH <support@gams.com>
4
+ # Copyright (c) 2017-2026 GAMS Development Corp. <support@gams.com>
5
+ # Copyright (c) 2017-2026 GAMS Software GmbH <support@gams.com>
6
6
  #
7
7
  # Permission is hereby granted, free of charge, to any person obtaining a copy
8
8
  # of this software and associated documentation files (the "Software"), to deal
@@ -1,8 +1,8 @@
1
1
  #
2
2
  # GAMS - General Algebraic Modeling System Python API
3
3
  #
4
- # Copyright (c) 2017-2025 GAMS Development Corp. <support@gams.com>
5
- # Copyright (c) 2017-2025 GAMS Software GmbH <support@gams.com>
4
+ # Copyright (c) 2017-2026 GAMS Development Corp. <support@gams.com>
5
+ # Copyright (c) 2017-2026 GAMS Software GmbH <support@gams.com>
6
6
  #
7
7
  # Permission is hereby granted, free of charge, to any person obtaining a copy
8
8
  # of this software and associated documentation files (the "Software"), to deal
@@ -1,8 +1,8 @@
1
1
  #
2
2
  # GAMS - General Algebraic Modeling System Python API
3
3
  #
4
- # Copyright (c) 2017-2025 GAMS Development Corp. <support@gams.com>
5
- # Copyright (c) 2017-2025 GAMS Software GmbH <support@gams.com>
4
+ # Copyright (c) 2017-2026 GAMS Development Corp. <support@gams.com>
5
+ # Copyright (c) 2017-2026 GAMS Software GmbH <support@gams.com>
6
6
  #
7
7
  # Permission is hereby granted, free of charge, to any person obtaining a copy
8
8
  # of this software and associated documentation files (the "Software"), to deal
@@ -1,8 +1,8 @@
1
1
  #
2
2
  # GAMS - General Algebraic Modeling System Python API
3
3
  #
4
- # Copyright (c) 2017-2025 GAMS Development Corp. <support@gams.com>
5
- # Copyright (c) 2017-2025 GAMS Software GmbH <support@gams.com>
4
+ # Copyright (c) 2017-2026 GAMS Development Corp. <support@gams.com>
5
+ # Copyright (c) 2017-2026 GAMS Software GmbH <support@gams.com>
6
6
  #
7
7
  # Permission is hereby granted, free of charge, to any person obtaining a copy
8
8
  # of this software and associated documentation files (the "Software"), to deal
@@ -1,8 +1,8 @@
1
1
  #
2
2
  # GAMS - General Algebraic Modeling System Python API
3
3
  #
4
- # Copyright (c) 2017-2025 GAMS Development Corp. <support@gams.com>
5
- # Copyright (c) 2017-2025 GAMS Software GmbH <support@gams.com>
4
+ # Copyright (c) 2017-2026 GAMS Development Corp. <support@gams.com>
5
+ # Copyright (c) 2017-2026 GAMS Software GmbH <support@gams.com>
6
6
  #
7
7
  # Permission is hereby granted, free of charge, to any person obtaining a copy
8
8
  # of this software and associated documentation files (the "Software"), to deal
@@ -1,8 +1,8 @@
1
1
  #
2
2
  # GAMS - General Algebraic Modeling System Python API
3
3
  #
4
- # Copyright (c) 2017-2025 GAMS Development Corp. <support@gams.com>
5
- # Copyright (c) 2017-2025 GAMS Software GmbH <support@gams.com>
4
+ # Copyright (c) 2017-2026 GAMS Development Corp. <support@gams.com>
5
+ # Copyright (c) 2017-2026 GAMS Software GmbH <support@gams.com>
6
6
  #
7
7
  # Permission is hereby granted, free of charge, to any person obtaining a copy
8
8
  # of this software and associated documentation files (the "Software"), to deal
@@ -1,8 +1,8 @@
1
1
  #
2
2
  # GAMS - General Algebraic Modeling System Python API
3
3
  #
4
- # Copyright (c) 2017-2025 GAMS Development Corp. <support@gams.com>
5
- # Copyright (c) 2017-2025 GAMS Software GmbH <support@gams.com>
4
+ # Copyright (c) 2017-2026 GAMS Development Corp. <support@gams.com>
5
+ # Copyright (c) 2017-2026 GAMS Software GmbH <support@gams.com>
6
6
  #
7
7
  # Permission is hereby granted, free of charge, to any person obtaining a copy
8
8
  # of this software and associated documentation files (the "Software"), to deal
@@ -1,8 +1,8 @@
1
1
  #
2
2
  # GAMS - General Algebraic Modeling System Python API
3
3
  #
4
- # Copyright (c) 2017-2025 GAMS Development Corp. <support@gams.com>
5
- # Copyright (c) 2017-2025 GAMS Software GmbH <support@gams.com>
4
+ # Copyright (c) 2017-2026 GAMS Development Corp. <support@gams.com>
5
+ # Copyright (c) 2017-2026 GAMS Software GmbH <support@gams.com>
6
6
  #
7
7
  # Permission is hereby granted, free of charge, to any person obtaining a copy
8
8
  # of this software and associated documentation files (the "Software"), to deal
@@ -1,8 +1,8 @@
1
1
  #
2
2
  # GAMS - General Algebraic Modeling System Python API
3
3
  #
4
- # Copyright (c) 2017-2025 GAMS Development Corp. <support@gams.com>
5
- # Copyright (c) 2017-2025 GAMS Software GmbH <support@gams.com>
4
+ # Copyright (c) 2017-2026 GAMS Development Corp. <support@gams.com>
5
+ # Copyright (c) 2017-2026 GAMS Software GmbH <support@gams.com>
6
6
  #
7
7
  # Permission is hereby granted, free of charge, to any person obtaining a copy
8
8
  # of this software and associated documentation files (the "Software"), to deal
@@ -1,8 +1,8 @@
1
1
  #
2
2
  # GAMS - General Algebraic Modeling System Python API
3
3
  #
4
- # Copyright (c) 2017-2025 GAMS Development Corp. <support@gams.com>
5
- # Copyright (c) 2017-2025 GAMS Software GmbH <support@gams.com>
4
+ # Copyright (c) 2017-2026 GAMS Development Corp. <support@gams.com>
5
+ # Copyright (c) 2017-2026 GAMS Software GmbH <support@gams.com>
6
6
  #
7
7
  # Permission is hereby granted, free of charge, to any person obtaining a copy
8
8
  # of this software and associated documentation files (the "Software"), to deal
@@ -1,8 +1,8 @@
1
1
  #
2
2
  # GAMS - General Algebraic Modeling System Python API
3
3
  #
4
- # Copyright (c) 2017-2025 GAMS Development Corp. <support@gams.com>
5
- # Copyright (c) 2017-2025 GAMS Software GmbH <support@gams.com>
4
+ # Copyright (c) 2017-2026 GAMS Development Corp. <support@gams.com>
5
+ # Copyright (c) 2017-2026 GAMS Software GmbH <support@gams.com>
6
6
  #
7
7
  # Permission is hereby granted, free of charge, to any person obtaining a copy
8
8
  # of this software and associated documentation files (the "Software"), to deal
@@ -1,8 +1,8 @@
1
1
  #
2
2
  # GAMS - General Algebraic Modeling System Python API
3
3
  #
4
- # Copyright (c) 2017-2025 GAMS Development Corp. <support@gams.com>
5
- # Copyright (c) 2017-2025 GAMS Software GmbH <support@gams.com>
4
+ # Copyright (c) 2017-2026 GAMS Development Corp. <support@gams.com>
5
+ # Copyright (c) 2017-2026 GAMS Software GmbH <support@gams.com>
6
6
  #
7
7
  # Permission is hereby granted, free of charge, to any person obtaining a copy
8
8
  # of this software and associated documentation files (the "Software"), to deal
@@ -1,8 +1,8 @@
1
1
  #
2
2
  # GAMS - General Algebraic Modeling System Python API
3
3
  #
4
- # Copyright (c) 2017-2025 GAMS Development Corp. <support@gams.com>
5
- # Copyright (c) 2017-2025 GAMS Software GmbH <support@gams.com>
4
+ # Copyright (c) 2017-2026 GAMS Development Corp. <support@gams.com>
5
+ # Copyright (c) 2017-2026 GAMS Software GmbH <support@gams.com>
6
6
  #
7
7
  # Permission is hereby granted, free of charge, to any person obtaining a copy
8
8
  # of this software and associated documentation files (the "Software"), to deal
@@ -1,8 +1,8 @@
1
1
  #
2
2
  # GAMS - General Algebraic Modeling System Python API
3
3
  #
4
- # Copyright (c) 2017-2025 GAMS Development Corp. <support@gams.com>
5
- # Copyright (c) 2017-2025 GAMS Software GmbH <support@gams.com>
4
+ # Copyright (c) 2017-2026 GAMS Development Corp. <support@gams.com>
5
+ # Copyright (c) 2017-2026 GAMS Software GmbH <support@gams.com>
6
6
  #
7
7
  # Permission is hereby granted, free of charge, to any person obtaining a copy
8
8
  # of this software and associated documentation files (the "Software"), to deal
@@ -1,8 +1,8 @@
1
1
  #
2
2
  # GAMS - General Algebraic Modeling System Python API
3
3
  #
4
- # Copyright (c) 2017-2025 GAMS Development Corp. <support@gams.com>
5
- # Copyright (c) 2017-2025 GAMS Software GmbH <support@gams.com>
4
+ # Copyright (c) 2017-2026 GAMS Development Corp. <support@gams.com>
5
+ # Copyright (c) 2017-2026 GAMS Software GmbH <support@gams.com>
6
6
  #
7
7
  # Permission is hereby granted, free of charge, to any person obtaining a copy
8
8
  # of this software and associated documentation files (the "Software"), to deal
@@ -1,8 +1,8 @@
1
1
  #
2
2
  # GAMS - General Algebraic Modeling System Python API
3
3
  #
4
- # Copyright (c) 2017-2025 GAMS Development Corp. <support@gams.com>
5
- # Copyright (c) 2017-2025 GAMS Software GmbH <support@gams.com>
4
+ # Copyright (c) 2017-2026 GAMS Development Corp. <support@gams.com>
5
+ # Copyright (c) 2017-2026 GAMS Software GmbH <support@gams.com>
6
6
  #
7
7
  # Permission is hereby granted, free of charge, to any person obtaining a copy
8
8
  # of this software and associated documentation files (the "Software"), to deal
@@ -1,8 +1,8 @@
1
1
  #
2
2
  # GAMS - General Algebraic Modeling System Python API
3
3
  #
4
- # Copyright (c) 2017-2025 GAMS Development Corp. <support@gams.com>
5
- # Copyright (c) 2017-2025 GAMS Software GmbH <support@gams.com>
4
+ # Copyright (c) 2017-2026 GAMS Development Corp. <support@gams.com>
5
+ # Copyright (c) 2017-2026 GAMS Software GmbH <support@gams.com>
6
6
  #
7
7
  # Permission is hereby granted, free of charge, to any person obtaining a copy
8
8
  # of this software and associated documentation files (the "Software"), to deal
@@ -1,8 +1,8 @@
1
1
  #
2
2
  # GAMS - General Algebraic Modeling System Python API
3
3
  #
4
- # Copyright (c) 2017-2025 GAMS Development Corp. <support@gams.com>
5
- # Copyright (c) 2017-2025 GAMS Software GmbH <support@gams.com>
4
+ # Copyright (c) 2017-2026 GAMS Development Corp. <support@gams.com>
5
+ # Copyright (c) 2017-2026 GAMS Software GmbH <support@gams.com>
6
6
  #
7
7
  # Permission is hereby granted, free of charge, to any person obtaining a copy
8
8
  # of this software and associated documentation files (the "Software"), to deal
@@ -1,8 +1,8 @@
1
1
  #
2
2
  # GAMS - General Algebraic Modeling System Python API
3
3
  #
4
- # Copyright (c) 2017-2025 GAMS Development Corp. <support@gams.com>
5
- # Copyright (c) 2017-2025 GAMS Software GmbH <support@gams.com>
4
+ # Copyright (c) 2017-2026 GAMS Development Corp. <support@gams.com>
5
+ # Copyright (c) 2017-2026 GAMS Software GmbH <support@gams.com>
6
6
  #
7
7
  # Permission is hereby granted, free of charge, to any person obtaining a copy
8
8
  # of this software and associated documentation files (the "Software"), to deal
@@ -1,8 +1,8 @@
1
1
  #
2
2
  # GAMS - General Algebraic Modeling System Python API
3
3
  #
4
- # Copyright (c) 2017-2025 GAMS Development Corp. <support@gams.com>
5
- # Copyright (c) 2017-2025 GAMS Software GmbH <support@gams.com>
4
+ # Copyright (c) 2017-2026 GAMS Development Corp. <support@gams.com>
5
+ # Copyright (c) 2017-2026 GAMS Software GmbH <support@gams.com>
6
6
  #
7
7
  # Permission is hereby granted, free of charge, to any person obtaining a copy
8
8
  # of this software and associated documentation files (the "Software"), to deal
@@ -1,8 +1,8 @@
1
1
  #
2
2
  # GAMS - General Algebraic Modeling System Python API
3
3
  #
4
- # Copyright (c) 2017-2025 GAMS Development Corp. <support@gams.com>
5
- # Copyright (c) 2017-2025 GAMS Software GmbH <support@gams.com>
4
+ # Copyright (c) 2017-2026 GAMS Development Corp. <support@gams.com>
5
+ # Copyright (c) 2017-2026 GAMS Software GmbH <support@gams.com>
6
6
  #
7
7
  # Permission is hereby granted, free of charge, to any person obtaining a copy
8
8
  # of this software and associated documentation files (the "Software"), to deal
@@ -1,8 +1,8 @@
1
1
  #
2
2
  # GAMS - General Algebraic Modeling System Python API
3
3
  #
4
- # Copyright (c) 2017-2025 GAMS Development Corp. <support@gams.com>
5
- # Copyright (c) 2017-2025 GAMS Software GmbH <support@gams.com>
4
+ # Copyright (c) 2017-2026 GAMS Development Corp. <support@gams.com>
5
+ # Copyright (c) 2017-2026 GAMS Software GmbH <support@gams.com>
6
6
  #
7
7
  # Permission is hereby granted, free of charge, to any person obtaining a copy
8
8
  # of this software and associated documentation files (the "Software"), to deal
@@ -1,8 +1,8 @@
1
1
  #
2
2
  # GAMS - General Algebraic Modeling System Python API
3
3
  #
4
- # Copyright (c) 2017-2025 GAMS Development Corp. <support@gams.com>
5
- # Copyright (c) 2017-2025 GAMS Software GmbH <support@gams.com>
4
+ # Copyright (c) 2017-2026 GAMS Development Corp. <support@gams.com>
5
+ # Copyright (c) 2017-2026 GAMS Software GmbH <support@gams.com>
6
6
  #
7
7
  # Permission is hereby granted, free of charge, to any person obtaining a copy
8
8
  # of this software and associated documentation files (the "Software"), to deal
@@ -1,8 +1,8 @@
1
1
  #
2
2
  # GAMS - General Algebraic Modeling System Python API
3
3
  #
4
- # Copyright (c) 2017-2025 GAMS Development Corp. <support@gams.com>
5
- # Copyright (c) 2017-2025 GAMS Software GmbH <support@gams.com>
4
+ # Copyright (c) 2017-2026 GAMS Development Corp. <support@gams.com>
5
+ # Copyright (c) 2017-2026 GAMS Software GmbH <support@gams.com>
6
6
  #
7
7
  # Permission is hereby granted, free of charge, to any person obtaining a copy
8
8
  # of this software and associated documentation files (the "Software"), to deal
@@ -1,8 +1,8 @@
1
1
  #
2
2
  # GAMS - General Algebraic Modeling System Python API
3
3
  #
4
- # Copyright (c) 2017-2025 GAMS Development Corp. <support@gams.com>
5
- # Copyright (c) 2017-2025 GAMS Software GmbH <support@gams.com>
4
+ # Copyright (c) 2017-2026 GAMS Development Corp. <support@gams.com>
5
+ # Copyright (c) 2017-2026 GAMS Software GmbH <support@gams.com>
6
6
  #
7
7
  # Permission is hereby granted, free of charge, to any person obtaining a copy
8
8
  # of this software and associated documentation files (the "Software"), to deal
@@ -1,8 +1,8 @@
1
1
  #
2
2
  # GAMS - General Algebraic Modeling System Python API
3
3
  #
4
- # Copyright (c) 2017-2025 GAMS Development Corp. <support@gams.com>
5
- # Copyright (c) 2017-2025 GAMS Software GmbH <support@gams.com>
4
+ # Copyright (c) 2017-2026 GAMS Development Corp. <support@gams.com>
5
+ # Copyright (c) 2017-2026 GAMS Software GmbH <support@gams.com>
6
6
  #
7
7
  # Permission is hereby granted, free of charge, to any person obtaining a copy
8
8
  # of this software and associated documentation files (the "Software"), to deal
@@ -1,8 +1,8 @@
1
1
  #
2
2
  # GAMS - General Algebraic Modeling System Python API
3
3
  #
4
- # Copyright (c) 2017-2025 GAMS Development Corp. <support@gams.com>
5
- # Copyright (c) 2017-2025 GAMS Software GmbH <support@gams.com>
4
+ # Copyright (c) 2017-2026 GAMS Development Corp. <support@gams.com>
5
+ # Copyright (c) 2017-2026 GAMS Software GmbH <support@gams.com>
6
6
  #
7
7
  # Permission is hereby granted, free of charge, to any person obtaining a copy
8
8
  # of this software and associated documentation files (the "Software"), to deal
@@ -1,8 +1,8 @@
1
1
  #
2
2
  # GAMS - General Algebraic Modeling System Python API
3
3
  #
4
- # Copyright (c) 2017-2025 GAMS Development Corp. <support@gams.com>
5
- # Copyright (c) 2017-2025 GAMS Software GmbH <support@gams.com>
4
+ # Copyright (c) 2017-2026 GAMS Development Corp. <support@gams.com>
5
+ # Copyright (c) 2017-2026 GAMS Software GmbH <support@gams.com>
6
6
  #
7
7
  # Permission is hereby granted, free of charge, to any person obtaining a copy
8
8
  # of this software and associated documentation files (the "Software"), to deal
@@ -1,8 +1,8 @@
1
1
  #
2
2
  # GAMS - General Algebraic Modeling System Python API
3
3
  #
4
- # Copyright (c) 2017-2025 GAMS Development Corp. <support@gams.com>
5
- # Copyright (c) 2017-2025 GAMS Software GmbH <support@gams.com>
4
+ # Copyright (c) 2017-2026 GAMS Development Corp. <support@gams.com>
5
+ # Copyright (c) 2017-2026 GAMS Software GmbH <support@gams.com>
6
6
  #
7
7
  # Permission is hereby granted, free of charge, to any person obtaining a copy
8
8
  # of this software and associated documentation files (the "Software"), to deal
@@ -1,8 +1,8 @@
1
1
  #
2
2
  # GAMS - General Algebraic Modeling System Python API
3
3
  #
4
- # Copyright (c) 2017-2025 GAMS Development Corp. <support@gams.com>
5
- # Copyright (c) 2017-2025 GAMS Software GmbH <support@gams.com>
4
+ # Copyright (c) 2017-2026 GAMS Development Corp. <support@gams.com>
5
+ # Copyright (c) 2017-2026 GAMS Software GmbH <support@gams.com>
6
6
  #
7
7
  # Permission is hereby granted, free of charge, to any person obtaining a copy
8
8
  # of this software and associated documentation files (the "Software"), to deal
@@ -1,8 +1,8 @@
1
1
  #
2
2
  # GAMS - General Algebraic Modeling System Python API
3
3
  #
4
- # Copyright (c) 2017-2025 GAMS Development Corp. <support@gams.com>
5
- # Copyright (c) 2017-2025 GAMS Software GmbH <support@gams.com>
4
+ # Copyright (c) 2017-2026 GAMS Development Corp. <support@gams.com>
5
+ # Copyright (c) 2017-2026 GAMS Software GmbH <support@gams.com>
6
6
  #
7
7
  # Permission is hereby granted, free of charge, to any person obtaining a copy
8
8
  # of this software and associated documentation files (the "Software"), to deal
@@ -1,8 +1,8 @@
1
1
  #
2
2
  # GAMS - General Algebraic Modeling System Python API
3
3
  #
4
- # Copyright (c) 2017-2025 GAMS Development Corp. <support@gams.com>
5
- # Copyright (c) 2017-2025 GAMS Software GmbH <support@gams.com>
4
+ # Copyright (c) 2017-2026 GAMS Development Corp. <support@gams.com>
5
+ # Copyright (c) 2017-2026 GAMS Software GmbH <support@gams.com>
6
6
  #
7
7
  # Permission is hereby granted, free of charge, to any person obtaining a copy
8
8
  # of this software and associated documentation files (the "Software"), to deal
@@ -1,8 +1,8 @@
1
1
  #
2
2
  # GAMS - General Algebraic Modeling System Python API
3
3
  #
4
- # Copyright (c) 2017-2025 GAMS Development Corp. <support@gams.com>
5
- # Copyright (c) 2017-2025 GAMS Software GmbH <support@gams.com>
4
+ # Copyright (c) 2017-2026 GAMS Development Corp. <support@gams.com>
5
+ # Copyright (c) 2017-2026 GAMS Software GmbH <support@gams.com>
6
6
  #
7
7
  # Permission is hereby granted, free of charge, to any person obtaining a copy
8
8
  # of this software and associated documentation files (the "Software"), to deal
@@ -1,8 +1,8 @@
1
1
  #
2
2
  # GAMS - General Algebraic Modeling System Python API
3
3
  #
4
- # Copyright (c) 2017-2025 GAMS Development Corp. <support@gams.com>
5
- # Copyright (c) 2017-2025 GAMS Software GmbH <support@gams.com>
4
+ # Copyright (c) 2017-2026 GAMS Development Corp. <support@gams.com>
5
+ # Copyright (c) 2017-2026 GAMS Software GmbH <support@gams.com>
6
6
  #
7
7
  # Permission is hereby granted, free of charge, to any person obtaining a copy
8
8
  # of this software and associated documentation files (the "Software"), to deal
@@ -1,8 +1,8 @@
1
1
  #
2
2
  # GAMS - General Algebraic Modeling System Python API
3
3
  #
4
- # Copyright (c) 2017-2025 GAMS Development Corp. <support@gams.com>
5
- # Copyright (c) 2017-2025 GAMS Software GmbH <support@gams.com>
4
+ # Copyright (c) 2017-2026 GAMS Development Corp. <support@gams.com>
5
+ # Copyright (c) 2017-2026 GAMS Software GmbH <support@gams.com>
6
6
  #
7
7
  # Permission is hereby granted, free of charge, to any person obtaining a copy
8
8
  # of this software and associated documentation files (the "Software"), to deal
@@ -1,8 +1,8 @@
1
1
  #
2
2
  # GAMS - General Algebraic Modeling System Python API
3
3
  #
4
- # Copyright (c) 2017-2025 GAMS Development Corp. <support@gams.com>
5
- # Copyright (c) 2017-2025 GAMS Software GmbH <support@gams.com>
4
+ # Copyright (c) 2017-2026 GAMS Development Corp. <support@gams.com>
5
+ # Copyright (c) 2017-2026 GAMS Software GmbH <support@gams.com>
6
6
  #
7
7
  # Permission is hereby granted, free of charge, to any person obtaining a copy
8
8
  # of this software and associated documentation files (the "Software"), to deal
@@ -1,8 +1,8 @@
1
1
  #
2
2
  # GAMS - General Algebraic Modeling System Python API
3
3
  #
4
- # Copyright (c) 2017-2025 GAMS Development Corp. <support@gams.com>
5
- # Copyright (c) 2017-2025 GAMS Software GmbH <support@gams.com>
4
+ # Copyright (c) 2017-2026 GAMS Development Corp. <support@gams.com>
5
+ # Copyright (c) 2017-2026 GAMS Software GmbH <support@gams.com>
6
6
  #
7
7
  # Permission is hereby granted, free of charge, to any person obtaining a copy
8
8
  # of this software and associated documentation files (the "Software"), to deal
@@ -1,8 +1,8 @@
1
1
  #
2
2
  # GAMS - General Algebraic Modeling System Python API
3
3
  #
4
- # Copyright (c) 2017-2025 GAMS Development Corp. <support@gams.com>
5
- # Copyright (c) 2017-2025 GAMS Software GmbH <support@gams.com>
4
+ # Copyright (c) 2017-2026 GAMS Development Corp. <support@gams.com>
5
+ # Copyright (c) 2017-2026 GAMS Software GmbH <support@gams.com>
6
6
  #
7
7
  # Permission is hereby granted, free of charge, to any person obtaining a copy
8
8
  # of this software and associated documentation files (the "Software"), to deal
@@ -1,8 +1,8 @@
1
1
  #
2
2
  # GAMS - General Algebraic Modeling System Python API
3
3
  #
4
- # Copyright (c) 2017-2025 GAMS Development Corp. <support@gams.com>
5
- # Copyright (c) 2017-2025 GAMS Software GmbH <support@gams.com>
4
+ # Copyright (c) 2017-2026 GAMS Development Corp. <support@gams.com>
5
+ # Copyright (c) 2017-2026 GAMS Software GmbH <support@gams.com>
6
6
  #
7
7
  # Permission is hereby granted, free of charge, to any person obtaining a copy
8
8
  # of this software and associated documentation files (the "Software"), to deal
@@ -1,8 +1,8 @@
1
1
  #
2
2
  # GAMS - General Algebraic Modeling System Python API
3
3
  #
4
- # Copyright (c) 2017-2025 GAMS Development Corp. <support@gams.com>
5
- # Copyright (c) 2017-2025 GAMS Software GmbH <support@gams.com>
4
+ # Copyright (c) 2017-2026 GAMS Development Corp. <support@gams.com>
5
+ # Copyright (c) 2017-2026 GAMS Software GmbH <support@gams.com>
6
6
  #
7
7
  # Permission is hereby granted, free of charge, to any person obtaining a copy
8
8
  # of this software and associated documentation files (the "Software"), to deal
@@ -1,8 +1,8 @@
1
1
  #
2
2
  # GAMS - General Algebraic Modeling System Python API
3
3
  #
4
- # Copyright (c) 2017-2025 GAMS Development Corp. <support@gams.com>
5
- # Copyright (c) 2017-2025 GAMS Software GmbH <support@gams.com>
4
+ # Copyright (c) 2017-2026 GAMS Development Corp. <support@gams.com>
5
+ # Copyright (c) 2017-2026 GAMS Software GmbH <support@gams.com>
6
6
  #
7
7
  # Permission is hereby granted, free of charge, to any person obtaining a copy
8
8
  # of this software and associated documentation files (the "Software"), to deal
@@ -1,8 +1,8 @@
1
1
  #
2
2
  # GAMS - General Algebraic Modeling System Python API
3
3
  #
4
- # Copyright (c) 2017-2025 GAMS Development Corp. <support@gams.com>
5
- # Copyright (c) 2017-2025 GAMS Software GmbH <support@gams.com>
4
+ # Copyright (c) 2017-2026 GAMS Development Corp. <support@gams.com>
5
+ # Copyright (c) 2017-2026 GAMS Software GmbH <support@gams.com>
6
6
  #
7
7
  # Permission is hereby granted, free of charge, to any person obtaining a copy
8
8
  # of this software and associated documentation files (the "Software"), to deal