Browse Source

Removed support for Python 3.6 (#856)

pull/942/head
Dov Benyomin Sohacheski 1 year ago
committed by GitHub
parent
commit
44b3b73e28
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 4 deletions
  1. +2
    -2
      .github/workflows/test.yml
  2. +1
    -1
      README.md
  3. +0
    -1
      pyproject.toml

+ 2
- 2
.github/workflows/test.yml View File

@@ -21,8 +21,8 @@ jobs:
python: ["3.7", "3.8", "3.9", "3.10", "3.11"] python: ["3.7", "3.8", "3.9", "3.10", "3.11"]
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v3
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with: with:
python-version: ${{ matrix.python }} python-version: ${{ matrix.python }}
- name: Setup Graphviz - name: Setup Graphviz


+ 1
- 1
README.md View File

@@ -41,7 +41,7 @@ Diagrams lets you draw the cloud system architecture **in Python code**. It was


## Getting Started ## Getting Started


It requires **Python 3.6** or higher, check your Python version first.
It requires **Python 3.7** or higher, check your Python version first.


It uses [Graphviz](https://www.graphviz.org/) to render the diagram, so you need to [install Graphviz](https://graphviz.gitlab.io/download/) to use **diagrams**. After installing graphviz (or already have it), install the **diagrams**. It uses [Graphviz](https://www.graphviz.org/) to render the diagram, so you need to [install Graphviz](https://graphviz.gitlab.io/download/) to use **diagrams**. After installing graphviz (or already have it), install the **diagrams**.




+ 0
- 1
pyproject.toml View File

@@ -13,7 +13,6 @@ include = ["resources/**/*"]
python = "^3.7" python = "^3.7"
graphviz = ">=0.13.2,<0.21.0" graphviz = ">=0.13.2,<0.21.0"
jinja2 = ">=2.10,<4.0" jinja2 = ">=2.10,<4.0"
contextvars = { version = "^2.4", python = "~3.6" }
typed-ast = "^1.5.4" typed-ast = "^1.5.4"


[tool.poetry.dev-dependencies] [tool.poetry.dev-dependencies]


Loading…
Cancel
Save