Skip to content

Commit

Permalink
Merge pull request #43 from christianhelle/remove-python-3.7-support
Browse files Browse the repository at this point in the history
Remove support for Python 3.7
  • Loading branch information
christianhelle authored May 13, 2024
2 parents de78cf9 + 599c7c0 commit 35cd5f2
Show file tree
Hide file tree
Showing 8 changed files with 2 additions and 71 deletions.
1 change: 0 additions & 1 deletion .github/workflows/build-for-os.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ jobs:
fail-fast: false
matrix:
python_version:
- "3.7"
- "3.8"
- "3.9"
- "3.10"
Expand Down
22 changes: 0 additions & 22 deletions .github/workflows/build-python-37-linux.yml

This file was deleted.

22 changes: 0 additions & 22 deletions .github/workflows/build-python-37-macos.yml

This file was deleted.

22 changes: 0 additions & 22 deletions .github/workflows/build-python-37-windows.yml

This file was deleted.

1 change: 0 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ jobs:
fail-fast: false
matrix:
python_version:
- "3.7"
- "3.8"
- "3.9"
- "3.10"
Expand Down
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,6 @@ job: Chief Operating Officer

|Windows|MacOS|Linux|
|---|---|---|
![](https://github.com/christianhelle/autofaker/actions/workflows/build-python-37-windows.yml/badge.svg)|![](https://github.com/christianhelle/autofaker/actions/workflows/build-python-37-macos.yml/badge.svg)|![](https://github.com/christianhelle/autofaker/actions/workflows/build-python-37-linux.yml/badge.svg)|
![](https://github.com/christianhelle/autofaker/actions/workflows/build-python-38-windows.yml/badge.svg)|![](https://github.com/christianhelle/autofaker/actions/workflows/build-python-38-macos.yml/badge.svg)|![](https://github.com/christianhelle/autofaker/actions/workflows/build-python-38-linux.yml/badge.svg)|
![](https://github.com/christianhelle/autofaker/actions/workflows/build-python-39-windows.yml/badge.svg)|![](https://github.com/christianhelle/autofaker/actions/workflows/build-python-39-macos.yml/badge.svg)|![](https://github.com/christianhelle/autofaker/actions/workflows/build-python-39-linux.yml/badge.svg)|
![](https://github.com/christianhelle/autofaker/actions/workflows/build-python-310-windows.yml/badge.svg)|![](https://github.com/christianhelle/autofaker/actions/workflows/build-python-310-macos.yml/badge.svg)|![](https://github.com/christianhelle/autofaker/actions/workflows/build-python-310-linux.yml/badge.svg)|
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@
long_description_content_type="text/markdown",
package_dir={"": "src"},
packages=setuptools.find_packages(where="src"),
python_requires=">=3.7",
python_requires=">=3.8",
install_requires=["pandas", "faker", "typing_inspect"],
)
2 changes: 1 addition & 1 deletion sonar-project.properties
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ sonar.tests=./tests
#sonar.sourceEncoding=UTF-8
#sonar.cpd.exclusions=

sonar.python.version=3.7, 3.8, 3.9, 3.10
sonar.python.version=3.8, 3.9, 3.10

sonar.dynamicAnalysis=reuseReports
sonar.core.codeCoveragePlugin=cobertura
Expand Down

0 comments on commit 35cd5f2

Please sign in to comment.