Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: HypothesisWorks/hypothesis
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: c76e787b639fe07b925860c6dad457fd038eec09
Choose a base ref
..
head repository: HypothesisWorks/hypothesis
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 557b8becdd27497b4ec05e61a55c507d391e6f62
Choose a head ref
Showing with 8,307 additions and 27 deletions.
  1. +62 −0 .gitignore
  2. +3 −0 AUTHORS.rst
  3. +2 −2 CONTRIBUTING.rst
  4. +1 −0 HypothesisWorks.github.io/.ruby-version
  5. +1 −0 HypothesisWorks.github.io/CNAME
  6. +15 −0 HypothesisWorks.github.io/Dockerfile
  7. +4 −0 HypothesisWorks.github.io/Gemfile
  8. +240 −0 HypothesisWorks.github.io/Gemfile.lock
  9. +25 −0 HypothesisWorks.github.io/LICENSE.md
  10. +37 −0 HypothesisWorks.github.io/Makefile
  11. +25 −0 HypothesisWorks.github.io/README.md
  12. +14 −0 HypothesisWorks.github.io/Vagrantfile
  13. +39 −0 HypothesisWorks.github.io/_config.yml
  14. +15 −0 HypothesisWorks.github.io/_data/authors.yml
  15. +26 −0 HypothesisWorks.github.io/_data/menu.yml
  16. +10 −0 HypothesisWorks.github.io/_includes/blog_header.html
  17. +10 −0 HypothesisWorks.github.io/_includes/footer.html
  18. +21 −0 HypothesisWorks.github.io/_includes/head.html
  19. +30 −0 HypothesisWorks.github.io/_includes/header.html
  20. +53 −0 HypothesisWorks.github.io/_layouts/blog_feed.xml
  21. +75 −0 HypothesisWorks.github.io/_layouts/blog_listing.html
  22. +24 −0 HypothesisWorks.github.io/_layouts/default.html
  23. +23 −0 HypothesisWorks.github.io/_layouts/page.html
  24. +41 −0 HypothesisWorks.github.io/_layouts/post.html
  25. +70 −0 HypothesisWorks.github.io/_posts/2016-04-15-economics-of-software-correctness.md
  26. +100 −0 HypothesisWorks.github.io/_posts/2016-04-15-getting-started-with-hypothesis.md
  27. +203 −0 HypothesisWorks.github.io/_posts/2016-04-16-anatomy-of-a-test.md
  28. +156 −0 HypothesisWorks.github.io/_posts/2016-04-16-encode-decode-invariant.md
  29. +212 −0 HypothesisWorks.github.io/_posts/2016-04-16-quickcheck-in-every-language.html
  30. +60 −0 HypothesisWorks.github.io/_posts/2016-04-16-the-purpose-of-hypothesis.md
  31. +350 −0 HypothesisWorks.github.io/_posts/2016-04-19-rule-based-stateful-testing.md
  32. +129 −0 HypothesisWorks.github.io/_posts/2016-04-29-testing-performance-optimizations.md
  33. +25 −0 HypothesisWorks.github.io/_posts/2016-05-02-referential-transparency.md
  34. +372 −0 HypothesisWorks.github.io/_posts/2016-05-11-generating-the-right-data.md
  35. +136 −0 HypothesisWorks.github.io/_posts/2016-05-13-what-is-property-based-testing.md
  36. +24 −0 HypothesisWorks.github.io/_posts/2016-05-19-announcing-hypothesis-legacy-support.md
  37. +180 −0 HypothesisWorks.github.io/_posts/2016-05-26-exploring-voting-with-hypothesis.md
  38. +160 −0 HypothesisWorks.github.io/_posts/2016-05-29-testing-optimizers-with-hypothesis.md
  39. +36 −0 HypothesisWorks.github.io/_posts/2016-05-31-looking-for-guest-posts.md
  40. +281 −0 HypothesisWorks.github.io/_posts/2016-06-05-incremental-property-based-testing.md
  41. +151 −0 HypothesisWorks.github.io/_posts/2016-06-13-testing-configuration-parameters.md
  42. +167 −0 HypothesisWorks.github.io/_posts/2016-06-30-tests-as-complete-specifications.md
  43. +192 −0 HypothesisWorks.github.io/_posts/2016-07-04-calculating-the-mean.md
  44. +27 −0 HypothesisWorks.github.io/_posts/2016-07-09-hypothesis-3.4.1-release.md
  45. +43 −0 HypothesisWorks.github.io/_posts/2016-07-13-hypothesis-3.4.2-release.md
  46. +161 −0 HypothesisWorks.github.io/_posts/2016-07-23-what-is-hypothesis.md
  47. +151 −0 HypothesisWorks.github.io/_posts/2016-08-09-hypothesis-pytest-fixtures.md
  48. +164 −0 HypothesisWorks.github.io/_posts/2016-08-19-recursive-data.md
  49. +145 −0 HypothesisWorks.github.io/_posts/2016-08-31-how-many-tests.md
  50. +224 −0 HypothesisWorks.github.io/_posts/2016-09-04-hypothesis-vs-eris.md
  51. +66 −0 HypothesisWorks.github.io/_posts/2016-09-23-hypothesis-3.5.0-release.md
  52. +65 −0 HypothesisWorks.github.io/_posts/2016-10-01-pytest-integration-sponsorship.md
  53. +130 −0 HypothesisWorks.github.io/_posts/2016-10-17-canonical-serialization.md
  54. +57 −0 HypothesisWorks.github.io/_posts/2016-10-31-hypothesis-3.6.0-release.md
  55. +167 −0 HypothesisWorks.github.io/_posts/2016-12-05-integrated-shrinking.md
  56. +145 −0 HypothesisWorks.github.io/_posts/2016-12-08-compositional-shrinking.md
  57. +442 −0 HypothesisWorks.github.io/_posts/2016-12-10-how-hypothesis-works.md
  58. +336 −0 HypothesisWorks.github.io/_posts/2017-03-09-hypothesis-for-researchers.md
  59. +215 −0 HypothesisWorks.github.io/_posts/2017-04-05-how-not-to-die-hard-with-hypothesis.md
  60. +190 −0 HypothesisWorks.github.io/_posts/2017-07-16-types-and-properties.md
  61. +197 −0 HypothesisWorks.github.io/_posts/2017-09-14-multi-bug-discovery.md
  62. +106 −0 HypothesisWorks.github.io/_posts/2017-09-28-threshold-problem.md
  63. +192 −0 HypothesisWorks.github.io/_posts/2018-01-08-smarkets.md
  64. +121 −0 HypothesisWorks.github.io/_posts/2018-02-27-continuous-releases.md
  65. +4 −0 HypothesisWorks.github.io/articles/alternatives/feed/index.xml
  66. +14 −0 HypothesisWorks.github.io/articles/alternatives/index.md
  67. +4 −0 HypothesisWorks.github.io/articles/details/feed/index.xml
  68. +12 −0 HypothesisWorks.github.io/articles/details/index.md
  69. +4 −0 HypothesisWorks.github.io/articles/development-process/feed/index.xml
  70. +5 −0 HypothesisWorks.github.io/articles/development-process/index.md
  71. +4 −0 HypothesisWorks.github.io/articles/example/feed/index.xml
  72. +7 −0 HypothesisWorks.github.io/articles/example/index.md
  73. +4 −0 HypothesisWorks.github.io/articles/faq/feed/index.xml
  74. +7 −0 HypothesisWorks.github.io/articles/faq/index.md
  75. +3 −0 HypothesisWorks.github.io/articles/feed/index.xml
  76. +21 −0 HypothesisWorks.github.io/articles/index.md
  77. +4 −0 HypothesisWorks.github.io/articles/intro/feed/index.xml
  78. +22 −0 HypothesisWorks.github.io/articles/intro/index.md
  79. +4 −0 HypothesisWorks.github.io/articles/news/feed/index.xml
  80. +8 −0 HypothesisWorks.github.io/articles/news/index.md
  81. +4 −0 HypothesisWorks.github.io/articles/non-technical/feed/index.xml
  82. +9 −0 HypothesisWorks.github.io/articles/non-technical/index.md
  83. +4 −0 HypothesisWorks.github.io/articles/principles/feed/index.xml
  84. +10 −0 HypothesisWorks.github.io/articles/principles/index.md
  85. +4 −0 HypothesisWorks.github.io/articles/properties/feed/index.xml
  86. +10 −0 HypothesisWorks.github.io/articles/properties/index.md
  87. +4 −0 HypothesisWorks.github.io/articles/python/feed/index.xml
  88. +8 −0 HypothesisWorks.github.io/articles/python/index.md
  89. +4 −0 HypothesisWorks.github.io/articles/technical/feed/index.xml
  90. +9 −0 HypothesisWorks.github.io/articles/technical/index.md
  91. +4 −0 HypothesisWorks.github.io/articles/writing-good-software/feed/index.xml
  92. +8 −0 HypothesisWorks.github.io/articles/writing-good-software/index.md
  93. +68 −0 HypothesisWorks.github.io/assets/css/jekyll-github.css
  94. +272 −0 HypothesisWorks.github.io/assets/css/site.css
  95. +18 −0 HypothesisWorks.github.io/assets/js/site.js
  96. +70 −0 HypothesisWorks.github.io/index.md
  97. +51 −0 HypothesisWorks.github.io/products/index.md
  98. +48 −0 HypothesisWorks.github.io/provision.sh
  99. +5 −0 HypothesisWorks.github.io/scratch/README.md
  100. +78 −0 HypothesisWorks.github.io/scratch/voting.py
  101. +47 −0 HypothesisWorks.github.io/services/index.md
  102. +41 −0 HypothesisWorks.github.io/sitemap.xml
  103. +159 −0 HypothesisWorks.github.io/testimonials/index.html
  104. +62 −0 HypothesisWorks.github.io/training/index.md
  105. +10 −0 hypothesis-python/docs/changes.rst
  106. +7 −0 hypothesis-python/src/_hypothesis_pytestplugin.py
  107. +9 −13 hypothesis-python/src/hypothesis/core.py
  108. +2 −3 hypothesis-python/src/hypothesis/internal/compat.py
  109. +0 −4 hypothesis-python/src/hypothesis/reporting.py
  110. +1 −1 hypothesis-python/src/hypothesis/version.py
  111. +8 −0 hypothesis-python/tests/cover/test_explicit_examples.py
  112. +1 −1 hypothesis-python/tests/cover/test_reporting.py
  113. +0 −3 hypothesis-python/tests/nocover/test_stateful.py
  114. +1 −0 tooling/ignore-list.txt
62 changes: 62 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -40,3 +40,65 @@ secrets

# Rust build targets
target

_site/
.sass-cache/
.docker

# =========================
# Operating System Files
# =========================

# OSX
# =========================

.AppleDouble
.LSOverride

# Thumbnails
._*

# Files that might appear on external disk
.Spotlight-V100
.Trashes

# Directories potentially created on remote AFP share
.AppleDB
.AppleDesktop
Network Trash Folder
Temporary Items
.apdisk

# Windows
# =========================

# Windows image file caches
Thumbs.db
ehthumbs.db

# Folder config file
Desktop.ini

# Recycle Bin used on file shares
$RECYCLE.BIN/

# Windows Installer files
*.cab
*.msi
*.msm
*.msp

# Windows shortcuts
*.lnk
sftp-config.json

# Vim files

*.sw*

__pycache__

.jekyll-metadata

HypothesisWorks.github.io.iml
jekyll.log
3 changes: 3 additions & 0 deletions AUTHORS.rst
Original file line number Diff line number Diff line change
@@ -54,6 +54,7 @@ their individual contributions.
* `Florian Bruhin <https://www.github.com/The-Compiler>`_
* `follower <https://www.github.com/follower>`_
* `Gary Donovan <https://www.github.com/garyd203>`_
* `Glenn Lehman <https://www.github.com/glnnlhmn>`_
* `Graham Williamson <https://github.com/00willo>`_
* `Grant David Bachman <https://github.com/grantbachman>`_ (grantbachman@gmail.com)
* `Gregory Petrosyan <https://github.com/flyingmutant>`_
@@ -82,6 +83,7 @@ their individual contributions.
* `Katelyn Gigante <https://github.com/silasary>`_
* `Katrina Durance <https://github.com/kdurance>`_
* `kbara <https://www.github.com/kbara>`_
* Keeri Tramm
* `Kristian Glass <https://www.github.com/doismellburning>`_
* `Krzysztof Przybyła <https://github.com/kprzybyla>`_
* `Kyle Reeve <https://www.github.com/kreeve>`_ (krzw92@gmail.com)
@@ -133,6 +135,7 @@ their individual contributions.
* `Sanyam Khurana <https://github.com/CuriousLearner>`_
* `Saul Shanabrook <https://www.github.com/saulshanabrook>`_ (s.shanabrook@gmail.com)
* `Shlok Gandhi <https://github.com/shlok57>`_ (shlok.gandhi@gmail.com)
* `Sogata Ray <https://github.com/rayardinanda>`_ (rayardinanda@gmail.com)
* `Stuart Cook <https://www.github.com/Zalathar>`_
* `SuperStormer <https://github.com/SuperStormer>`_
* `Sushobhit <https://github.com/sushobhit27>`_ (sushobhitsolanki@gmail.com)
4 changes: 2 additions & 2 deletions CONTRIBUTING.rst
Original file line number Diff line number Diff line change
@@ -53,8 +53,8 @@ make changes and install the changed version) you can do this with:

.. code:: bash
pip install -r requirements/test.txt
pip install -r requirements/tools.txt
pip install -r requirements/test.in
pip install -r requirements/tools.in
pip install -e hypothesis-python/
# You don't need to run the tests, but here's the command:
1 change: 1 addition & 0 deletions HypothesisWorks.github.io/.ruby-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
2.4.2
1 change: 1 addition & 0 deletions HypothesisWorks.github.io/CNAME
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
hypothesis.works
15 changes: 15 additions & 0 deletions HypothesisWorks.github.io/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
FROM ruby:2.4-alpine3.6

LABEL maintainer "Alex Chan <alex@alexwlchan.net>"
LABEL description "Local build image for HypothesisWorks.github.io"

COPY Gemfile .
COPY Gemfile.lock .

RUN apk update && \
apk add build-base git make nodejs
RUN bundle install

WORKDIR /site

ENTRYPOINT ["bundle", "exec", "jekyll"]
4 changes: 4 additions & 0 deletions HypothesisWorks.github.io/Gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
source 'https://rubygems.org'

gem 'github-pages', group: :jekyll_plugins
gem 'jekyll-redirect-from', group: :jekyll_plugins
240 changes: 240 additions & 0 deletions HypothesisWorks.github.io/Gemfile.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,240 @@
GEM
remote: https://rubygems.org/
specs:
activesupport (4.2.9)
i18n (~> 0.7)
minitest (~> 5.1)
thread_safe (~> 0.3, >= 0.3.4)
tzinfo (~> 1.1)
addressable (2.5.2)
public_suffix (>= 2.0.2, < 4.0)
coffee-script (2.4.1)
coffee-script-source
execjs
coffee-script-source (1.11.1)
colorator (1.1.0)
commonmarker (0.17.7.1)
ruby-enum (~> 0.5)
concurrent-ruby (1.0.5)
ethon (0.11.0)
ffi (>= 1.3.0)
execjs (2.7.0)
faraday (0.14.0)
multipart-post (>= 1.2, < 3)
ffi (1.9.21)
forwardable-extended (2.6.0)
gemoji (3.0.0)
github-pages (177)
activesupport (= 4.2.9)
github-pages-health-check (= 1.3.5)
jekyll (= 3.6.2)
jekyll-avatar (= 0.5.0)
jekyll-coffeescript (= 1.0.2)
jekyll-commonmark-ghpages (= 0.1.5)
jekyll-default-layout (= 0.1.4)
jekyll-feed (= 0.9.2)
jekyll-gist (= 1.4.1)
jekyll-github-metadata (= 2.9.3)
jekyll-mentions (= 1.2.0)
jekyll-optional-front-matter (= 0.3.0)
jekyll-paginate (= 1.1.0)
jekyll-readme-index (= 0.2.0)
jekyll-redirect-from (= 0.12.1)
jekyll-relative-links (= 0.5.2)
jekyll-remote-theme (= 0.2.3)
jekyll-sass-converter (= 1.5.0)
jekyll-seo-tag (= 2.3.0)
jekyll-sitemap (= 1.1.1)
jekyll-swiss (= 0.4.0)
jekyll-theme-architect (= 0.1.0)
jekyll-theme-cayman (= 0.1.0)
jekyll-theme-dinky (= 0.1.0)
jekyll-theme-hacker (= 0.1.0)
jekyll-theme-leap-day (= 0.1.0)
jekyll-theme-merlot (= 0.1.0)
jekyll-theme-midnight (= 0.1.0)
jekyll-theme-minimal (= 0.1.0)
jekyll-theme-modernist (= 0.1.0)
jekyll-theme-primer (= 0.5.2)
jekyll-theme-slate (= 0.1.0)
jekyll-theme-tactile (= 0.1.0)
jekyll-theme-time-machine (= 0.1.0)
jekyll-titles-from-headings (= 0.5.0)
jemoji (= 0.8.1)
kramdown (= 1.16.2)
liquid (= 4.0.0)
listen (= 3.0.6)
mercenary (~> 0.3)
minima (= 2.1.1)
nokogiri (>= 1.8.1, < 2.0)
rouge (= 2.2.1)
terminal-table (~> 1.4)
github-pages-health-check (1.3.5)
addressable (~> 2.3)
net-dns (~> 0.8)
octokit (~> 4.0)
public_suffix (~> 2.0)
typhoeus (~> 0.7)
html-pipeline (2.7.1)
activesupport (>= 2)
nokogiri (>= 1.4)
i18n (0.9.4)
concurrent-ruby (~> 1.0)
jekyll (3.6.2)
addressable (~> 2.4)
colorator (~> 1.0)
jekyll-sass-converter (~> 1.0)
jekyll-watch (~> 1.1)
kramdown (~> 1.14)
liquid (~> 4.0)
mercenary (~> 0.3.3)
pathutil (~> 0.9)
rouge (>= 1.7, < 3)
safe_yaml (~> 1.0)
jekyll-avatar (0.5.0)
jekyll (~> 3.0)
jekyll-coffeescript (1.0.2)
coffee-script (~> 2.2)
coffee-script-source (~> 1.11.1)
jekyll-commonmark (1.1.0)
commonmarker (~> 0.14)
jekyll (>= 3.0, < 4.0)
jekyll-commonmark-ghpages (0.1.5)
commonmarker (~> 0.17.6)
jekyll-commonmark (~> 1)
rouge (~> 2)
jekyll-default-layout (0.1.4)
jekyll (~> 3.0)
jekyll-feed (0.9.2)
jekyll (~> 3.3)
jekyll-gist (1.4.1)
octokit (~> 4.2)
jekyll-github-metadata (2.9.3)
jekyll (~> 3.1)
octokit (~> 4.0, != 4.4.0)
jekyll-mentions (1.2.0)
activesupport (~> 4.0)
html-pipeline (~> 2.3)
jekyll (~> 3.0)
jekyll-optional-front-matter (0.3.0)
jekyll (~> 3.0)
jekyll-paginate (1.1.0)
jekyll-readme-index (0.2.0)
jekyll (~> 3.0)
jekyll-redirect-from (0.12.1)
jekyll (~> 3.3)
jekyll-relative-links (0.5.2)
jekyll (~> 3.3)
jekyll-remote-theme (0.2.3)
jekyll (~> 3.5)
rubyzip (>= 1.2.1, < 3.0)
typhoeus (>= 0.7, < 2.0)
jekyll-sass-converter (1.5.0)
sass (~> 3.4)
jekyll-seo-tag (2.3.0)
jekyll (~> 3.3)
jekyll-sitemap (1.1.1)
jekyll (~> 3.3)
jekyll-swiss (0.4.0)
jekyll-theme-architect (0.1.0)
jekyll (~> 3.5)
jekyll-seo-tag (~> 2.0)
jekyll-theme-cayman (0.1.0)
jekyll (~> 3.5)
jekyll-seo-tag (~> 2.0)
jekyll-theme-dinky (0.1.0)
jekyll (~> 3.5)
jekyll-seo-tag (~> 2.0)
jekyll-theme-hacker (0.1.0)
jekyll (~> 3.5)
jekyll-seo-tag (~> 2.0)
jekyll-theme-leap-day (0.1.0)
jekyll (~> 3.5)
jekyll-seo-tag (~> 2.0)
jekyll-theme-merlot (0.1.0)
jekyll (~> 3.5)
jekyll-seo-tag (~> 2.0)
jekyll-theme-midnight (0.1.0)
jekyll (~> 3.5)
jekyll-seo-tag (~> 2.0)
jekyll-theme-minimal (0.1.0)
jekyll (~> 3.5)
jekyll-seo-tag (~> 2.0)
jekyll-theme-modernist (0.1.0)
jekyll (~> 3.5)
jekyll-seo-tag (~> 2.0)
jekyll-theme-primer (0.5.2)
jekyll (~> 3.5)
jekyll-github-metadata (~> 2.9)
jekyll-seo-tag (~> 2.2)
jekyll-theme-slate (0.1.0)
jekyll (~> 3.5)
jekyll-seo-tag (~> 2.0)
jekyll-theme-tactile (0.1.0)
jekyll (~> 3.5)
jekyll-seo-tag (~> 2.0)
jekyll-theme-time-machine (0.1.0)
jekyll (~> 3.5)
jekyll-seo-tag (~> 2.0)
jekyll-titles-from-headings (0.5.0)
jekyll (~> 3.3)
jekyll-watch (1.5.1)
listen (~> 3.0)
jemoji (0.8.1)
activesupport (~> 4.0, >= 4.2.9)
gemoji (~> 3.0)
html-pipeline (~> 2.2)
jekyll (>= 3.0)
kramdown (1.16.2)
liquid (4.0.0)
listen (3.0.6)
rb-fsevent (>= 0.9.3)
rb-inotify (>= 0.9.7)
mercenary (0.3.6)
mini_portile2 (2.3.0)
minima (2.1.1)
jekyll (~> 3.3)
minitest (5.11.3)
multipart-post (2.0.0)
net-dns (0.8.0)
nokogiri (1.8.2)
mini_portile2 (~> 2.3.0)
octokit (4.8.0)
sawyer (~> 0.8.0, >= 0.5.3)
pathutil (0.16.1)
forwardable-extended (~> 2.6)
public_suffix (2.0.5)
rb-fsevent (0.10.2)
rb-inotify (0.9.10)
ffi (>= 0.5.0, < 2)
rouge (2.2.1)
ruby-enum (0.7.1)
i18n
rubyzip (1.2.1)
safe_yaml (1.0.4)
sass (3.5.5)
sass-listen (~> 4.0.0)
sass-listen (4.0.0)
rb-fsevent (~> 0.9, >= 0.9.4)
rb-inotify (~> 0.9, >= 0.9.7)
sawyer (0.8.1)
addressable (>= 2.3.5, < 2.6)
faraday (~> 0.8, < 1.0)
terminal-table (1.8.0)
unicode-display_width (~> 1.1, >= 1.1.1)
thread_safe (0.3.6)
typhoeus (0.8.0)
ethon (>= 0.8.0)
tzinfo (1.2.5)
thread_safe (~> 0.1)
unicode-display_width (1.3.0)

PLATFORMS
ruby

DEPENDENCIES
github-pages
jekyll-redirect-from

BUNDLED WITH
1.16.0
25 changes: 25 additions & 0 deletions HypothesisWorks.github.io/LICENSE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
Parts of this site are based on rifyll by Moinul Hossain. These parts (and
only these parts) arereleased under the following license:


The MIT License (MIT)

Copyright (c) [2015] [Moinul Hossain]

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
Loading