specmatic 2.13.1__tar.gz → 2.14.1__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.

Potentially problematic release.


This version of specmatic might be problematic. Click here for more details.

Files changed (42) hide show
  1. {specmatic-2.13.1/specmatic.egg-info → specmatic-2.14.1}/PKG-INFO +5 -5
  2. {specmatic-2.13.1 → specmatic-2.14.1}/README.md +3 -3
  3. {specmatic-2.13.1 → specmatic-2.14.1}/setup.py +1 -1
  4. {specmatic-2.13.1 → specmatic-2.14.1}/specmatic/build_utils.py +1 -1
  5. {specmatic-2.13.1 → specmatic-2.14.1}/specmatic/core/specmatic.jar +0 -0
  6. specmatic-2.14.1/specmatic/version.py +2 -0
  7. {specmatic-2.13.1 → specmatic-2.14.1/specmatic.egg-info}/PKG-INFO +5 -5
  8. specmatic-2.13.1/specmatic/version.py +0 -2
  9. {specmatic-2.13.1 → specmatic-2.14.1}/MANIFEST.in +0 -0
  10. {specmatic-2.13.1 → specmatic-2.14.1}/setup.cfg +0 -0
  11. {specmatic-2.13.1 → specmatic-2.14.1}/specmatic/__init__.py +0 -0
  12. {specmatic-2.13.1 → specmatic-2.14.1}/specmatic/core/__init__.py +0 -0
  13. {specmatic-2.13.1 → specmatic-2.14.1}/specmatic/core/decorators.py +0 -0
  14. {specmatic-2.13.1 → specmatic-2.14.1}/specmatic/core/specmatic.py +0 -0
  15. {specmatic-2.13.1 → specmatic-2.14.1}/specmatic/core/specmatic_base.py +0 -0
  16. {specmatic-2.13.1 → specmatic-2.14.1}/specmatic/core/specmatic_stub.py +0 -0
  17. {specmatic-2.13.1 → specmatic-2.14.1}/specmatic/core/specmatic_test.py +0 -0
  18. {specmatic-2.13.1 → specmatic-2.14.1}/specmatic/coverage/__init__.py +0 -0
  19. {specmatic-2.13.1 → specmatic-2.14.1}/specmatic/coverage/app_route_adapter.py +0 -0
  20. {specmatic-2.13.1 → specmatic-2.14.1}/specmatic/coverage/coverage_route.py +0 -0
  21. {specmatic-2.13.1 → specmatic-2.14.1}/specmatic/coverage/fastapi_app_route_adapter.py +0 -0
  22. {specmatic-2.13.1 → specmatic-2.14.1}/specmatic/coverage/flask_app_route_adapter.py +0 -0
  23. {specmatic-2.13.1 → specmatic-2.14.1}/specmatic/coverage/sanic_app_route_adapter.py +0 -0
  24. {specmatic-2.13.1 → specmatic-2.14.1}/specmatic/coverage/servers/__init__.py +0 -0
  25. {specmatic-2.13.1 → specmatic-2.14.1}/specmatic/coverage/servers/coverage_server.py +0 -0
  26. {specmatic-2.13.1 → specmatic-2.14.1}/specmatic/coverage/servers/fastapi_app_coverage_server.py +0 -0
  27. {specmatic-2.13.1 → specmatic-2.14.1}/specmatic/coverage/servers/flask_app_coverage_server.py +0 -0
  28. {specmatic-2.13.1 → specmatic-2.14.1}/specmatic/coverage/servers/sanic_app_coverage_server.py +0 -0
  29. {specmatic-2.13.1 → specmatic-2.14.1}/specmatic/generators/__init__.py +0 -0
  30. {specmatic-2.13.1 → specmatic-2.14.1}/specmatic/generators/pytest_generator.py +0 -0
  31. {specmatic-2.13.1 → specmatic-2.14.1}/specmatic/generators/test_generator_base.py +0 -0
  32. {specmatic-2.13.1 → specmatic-2.14.1}/specmatic/generators/unittest_generator.py +0 -0
  33. {specmatic-2.13.1 → specmatic-2.14.1}/specmatic/servers/__init__.py +0 -0
  34. {specmatic-2.13.1 → specmatic-2.14.1}/specmatic/servers/app_server.py +0 -0
  35. {specmatic-2.13.1 → specmatic-2.14.1}/specmatic/servers/asgi_app_server.py +0 -0
  36. {specmatic-2.13.1 → specmatic-2.14.1}/specmatic/servers/wsgi_app_server.py +0 -0
  37. {specmatic-2.13.1 → specmatic-2.14.1}/specmatic/servers/wsgi_server_thread.py +0 -0
  38. {specmatic-2.13.1 → specmatic-2.14.1}/specmatic/utils.py +0 -0
  39. {specmatic-2.13.1 → specmatic-2.14.1}/specmatic.egg-info/SOURCES.txt +0 -0
  40. {specmatic-2.13.1 → specmatic-2.14.1}/specmatic.egg-info/dependency_links.txt +0 -0
  41. {specmatic-2.13.1 → specmatic-2.14.1}/specmatic.egg-info/requires.txt +0 -0
  42. {specmatic-2.13.1 → specmatic-2.14.1}/specmatic.egg-info/top_level.txt +0 -0
@@ -1,8 +1,8 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: specmatic
3
- Version: 2.13.1
3
+ Version: 2.14.1
4
4
  Summary: A Python module for using the Specmatic Library.
5
- Home-page: https://github.com/znsio/specmatic-python-extensions
5
+ Home-page: https://github.com/specmatic/specmatic-python-extensions
6
6
  Author: Specmatic Builders
7
7
  Author-email: info@core.in
8
8
  Description-Content-Type: text/markdown
@@ -251,9 +251,9 @@ coverage_server.stop()
251
251
  If you are able to get the app started using uvicorn, it will work with specmatic too.
252
252
 
253
253
  ## Sample Projects
254
- - [Check out the Specmatic Order BFF Python repo](https://github.com/znsio/specmatic-order-bff-python/) to see more examples of how to use specmatic with a Flask app.
255
- - [Check out the Specmatic Order BFF Python Sanic repo](https://github.com/znsio/specmatic-order-bff-python-sanic/) to see more examples of how to use specmatic with a Sanic app.
256
- - [Check out the Specmatic Order API Python repo](https://github.com/znsio/specmatic-order-api-python/) to see an examples of how to just run tests without using a stub.
254
+ - [Check out the Specmatic Order BFF Python repo](https://github.com/specmatic/specmatic-order-bff-python/) to see more examples of how to use specmatic with a Flask app.
255
+ - [Check out the Specmatic Order BFF Python Sanic repo](https://github.com/specmatic/specmatic-order-bff-python-sanic/) to see more examples of how to use specmatic with a Sanic app.
256
+ - [Check out the Specmatic Order API Python repo](https://github.com/specmatic/specmatic-order-api-python/) to see an examples of how to just run tests without using a stub.
257
257
 
258
258
 
259
259
 
@@ -235,9 +235,9 @@ coverage_server.stop()
235
235
  If you are able to get the app started using uvicorn, it will work with specmatic too.
236
236
 
237
237
  ## Sample Projects
238
- - [Check out the Specmatic Order BFF Python repo](https://github.com/znsio/specmatic-order-bff-python/) to see more examples of how to use specmatic with a Flask app.
239
- - [Check out the Specmatic Order BFF Python Sanic repo](https://github.com/znsio/specmatic-order-bff-python-sanic/) to see more examples of how to use specmatic with a Sanic app.
240
- - [Check out the Specmatic Order API Python repo](https://github.com/znsio/specmatic-order-api-python/) to see an examples of how to just run tests without using a stub.
238
+ - [Check out the Specmatic Order BFF Python repo](https://github.com/specmatic/specmatic-order-bff-python/) to see more examples of how to use specmatic with a Flask app.
239
+ - [Check out the Specmatic Order BFF Python Sanic repo](https://github.com/specmatic/specmatic-order-bff-python-sanic/) to see more examples of how to use specmatic with a Sanic app.
240
+ - [Check out the Specmatic Order API Python repo](https://github.com/specmatic/specmatic-order-api-python/) to see an examples of how to just run tests without using a stub.
241
241
 
242
242
 
243
243
 
@@ -20,7 +20,7 @@ setup(
20
20
  long_description_content_type='text/markdown',
21
21
  author='Specmatic Builders',
22
22
  author_email='info@core.in',
23
- url='https://github.com/znsio/specmatic-python-extensions',
23
+ url='https://github.com/specmatic/specmatic-python-extensions',
24
24
  packages=find_packages(exclude=['test', 'test.*']),
25
25
  include_package_data=True,
26
26
  install_requires=[
@@ -4,7 +4,7 @@ from specmatic.utils import get_project_root
4
4
 
5
5
 
6
6
  def download_specmatic_jar(version):
7
- file_url = f"https://repo1.maven.org/maven2/io/specmatic/specmatic-executable-all/{version}/specmatic-executable-all-{version}.jar"
7
+ file_url = f"https://github.com/specmatic/specmatic/releases/download/{version}/specmatic.jar"
8
8
  file_path = get_project_root() + "/specmatic/core/specmatic.jar"
9
9
  print(f"Downloading specmatic jar from: {file_url}")
10
10
  urllib.request.urlretrieve(file_url, file_path)
@@ -0,0 +1,2 @@
1
+ __version__ = '2.14.1'
2
+ __specmatic_version__ = '2.14.1'
@@ -1,8 +1,8 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: specmatic
3
- Version: 2.13.1
3
+ Version: 2.14.1
4
4
  Summary: A Python module for using the Specmatic Library.
5
- Home-page: https://github.com/znsio/specmatic-python-extensions
5
+ Home-page: https://github.com/specmatic/specmatic-python-extensions
6
6
  Author: Specmatic Builders
7
7
  Author-email: info@core.in
8
8
  Description-Content-Type: text/markdown
@@ -251,9 +251,9 @@ coverage_server.stop()
251
251
  If you are able to get the app started using uvicorn, it will work with specmatic too.
252
252
 
253
253
  ## Sample Projects
254
- - [Check out the Specmatic Order BFF Python repo](https://github.com/znsio/specmatic-order-bff-python/) to see more examples of how to use specmatic with a Flask app.
255
- - [Check out the Specmatic Order BFF Python Sanic repo](https://github.com/znsio/specmatic-order-bff-python-sanic/) to see more examples of how to use specmatic with a Sanic app.
256
- - [Check out the Specmatic Order API Python repo](https://github.com/znsio/specmatic-order-api-python/) to see an examples of how to just run tests without using a stub.
254
+ - [Check out the Specmatic Order BFF Python repo](https://github.com/specmatic/specmatic-order-bff-python/) to see more examples of how to use specmatic with a Flask app.
255
+ - [Check out the Specmatic Order BFF Python Sanic repo](https://github.com/specmatic/specmatic-order-bff-python-sanic/) to see more examples of how to use specmatic with a Sanic app.
256
+ - [Check out the Specmatic Order API Python repo](https://github.com/specmatic/specmatic-order-api-python/) to see an examples of how to just run tests without using a stub.
257
257
 
258
258
 
259
259
 
@@ -1,2 +0,0 @@
1
- __version__ = '2.13.1'
2
- __specmatic_version__ = '2.13.1'
File without changes
File without changes