Skip to content

Commit

Permalink
chore(build): clean up supported python version and redundant config …
Browse files Browse the repository at this point in the history
…in setup.cfg
  • Loading branch information
totallyzen committed Jan 26, 2024
1 parent 62f0459 commit e1b2425
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-community.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:
cache: poetry
- name: Install Python dependencies
run: poetry install -E ${{ matrix.module }}
- name: Lint the code
- name: Run linter
run: make modules/${{ matrix.module }}/lint
- name: Run tests
run: make modules/${{ matrix.module }}/tests
4 changes: 2 additions & 2 deletions .github/workflows/ci-core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
matrix:
os: [ ubuntu, macos, windows ]
python-version: ["3.8", "3.10", "3.11"]
python-version: ["3.8", "3.9", "3.10", "3.11"]
runs-on: ${{ matrix.os }}-latest
steps:
- uses: actions/checkout@v4
Expand All @@ -25,7 +25,7 @@ jobs:
cache: poetry
- name: Install Python dependencies
run: poetry install
- name: Lint the code
- name: Run linter
run: make core/lint
- name: Run tests
run: make core/tests
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ packages = [
"Issue Tracker" = "https://github.com/testcontainers/testcontainers-python/issues"

[tool.poetry.dependencies]
python = ">=3.9,<3.12"
python = ">=3.8,<3.12"
docker = "*" # ">=4.0"
urllib3 = "*" # "<2.0"
wrapt = "*" # "^1.16.0"
Expand Down
10 changes: 0 additions & 10 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,13 +1,3 @@
[bdist_wheel]
universal = 1

[metadata]
description-file = README.rst

[flake8]
max-line-length = 100
exclude = .git,__pycache__,build,dist,venv,.venv

[tools:pytest]
log_cli_level = INFO
log_cli = true

0 comments on commit e1b2425

Please sign in to comment.