Skip to content

Commit

Permalink
Remove python 3.9
Browse files Browse the repository at this point in the history
Signed-off-by: patrickpa <patrickabrahao.pa@gmail.com>
  • Loading branch information
patrickpa committed Jun 4, 2024
1 parent 8218a3a commit f31c2f6
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11"]
python-version: ["3.10", "3.11"]
os: [ubuntu-22.04, windows-2019]
name: Python ${{ matrix.python-version }}
name: ${{ matrix.os }} - Python ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
Expand Down
4 changes: 2 additions & 2 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ license = "MPL-2.0"
readme = "README.md"

[tool.poetry.dependencies]
python = "^3.9"
python = "^3.10"
pydantic-xml = "^2.11.0"
pydantic = "^2.7.2"
lxml = "^5.2.2"
Expand Down
12 changes: 6 additions & 6 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
annotated-types==0.7.0 ; python_version >= "3.9" and python_version < "4.0"
lxml==5.2.2 ; python_version >= "3.9" and python_version < "4.0"
pydantic-core==2.18.4 ; python_version >= "3.9" and python_version < "4.0"
pydantic-xml==2.11.0 ; python_version >= "3.9" and python_version < "4.0"
pydantic==2.7.3 ; python_version >= "3.9" and python_version < "4.0"
typing-extensions==4.12.1 ; python_version >= "3.9" and python_version < "4.0"
annotated-types==0.7.0 ; python_version >= "3.10" and python_version < "4.0"
lxml==5.2.2 ; python_version >= "3.10" and python_version < "4.0"
pydantic-core==2.18.4 ; python_version >= "3.10" and python_version < "4.0"
pydantic-xml==2.11.0 ; python_version >= "3.10" and python_version < "4.0"
pydantic==2.7.3 ; python_version >= "3.10" and python_version < "4.0"
typing-extensions==4.12.1 ; python_version >= "3.10" and python_version < "4.0"

0 comments on commit f31c2f6

Please sign in to comment.