Bump pydantic from 1.10.2 to 1.10.13

Bumps [pydantic](https://github.com/pydantic/pydantic) from 1.10.2 to 1.10.13.
- [Release notes](https://github.com/pydantic/pydantic/releases)
- [Changelog](https://github.com/pydantic/pydantic/blob/main/HISTORY.md)
- [Commits](https://github.com/pydantic/pydantic/compare/v1.10.2...v1.10.13)

---
updated-dependencies:
- dependency-name: pydantic
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
1 file changed
tree: fdd01cf3e29934b3991fca912d260d591f41e3b7
  1. .github/
  2. docs/
  3. .asf.yaml
  4. .DS_Store
  5. .gitignore
  6. .markdownlint.json
  7. index.html
  8. README.md
  9. requirements.txt
  10. requirements_min.txt
README.md

This repository provides the source for the main website of The Apache AGE.

The link below contains the following Apache AGE project:

  • The master branch contains the source code of the latest version of the documentation.
  • vX.Y.Z Branches contain the source code of the documentation of releases.
  • The asf-site branch contains the static webpage code, as well as the build static version of the documenation (in the docs folder). The docs folder should not be manually updated.
  • new-web branch is where website development work is done.
  • Install requirements (the latex and dvisvgm commands are required to display math)
  • MacOS
brew install python3 virtualenv texlive
  • Ubuntu
sudo apt install python3 virtualenv texlive-latex-base texlive-latex-extra texlive-extra-utils
  • Clone this repository
  • Navigate to the root of the repository
  • Create a python virtual environment
virtualenv -p python3 venv
  • Activate the virtual environment
source venv/bin/activate
  • Install the python requirements
pip install -r requirements.txt
  • Build the documentation
    • From :warning: remote branches

      sphinx-multiversion docs build/html
      

      The documentation should now be in the build/html folder, with a subfolder per remote branch (version).

    • From the current folder

      sphinx-build docs build/html/current
      

      The documentation for the current local branch should now be in the build/html/current folder (no subfolders).

  • Navigate to the root of the repository

  • Activate the virtual environment if not yet active

source venv/bin/activate
  • Build the documentation
    • From :warning: remote branches

      sphinx-multiversion docs build/html
      

      The documentation should now be in the build/html folder, with a subfolder per remote branch (version).

    • From the current folder

      sphinx-build docs build/html/current
      

      The updated documentation for the current local branch should now be in the build/html/current folder (no subfolders).