Skip to content

Commit 46196bb

Browse files
feat: remove deprecated python versions (#561)
* feat: remove deprecated python versions * feat: add CHANGELOG.md * fix: poetry.lock
1 parent 9a8cdd1 commit 46196bb

6 files changed

Lines changed: 24 additions & 13 deletions

File tree

.github/workflows/run-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
strategy:
1111
matrix:
12-
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
12+
python-version: ['3.10', '3.11', '3.12', '3.13']
1313
steps:
1414
- uses: actions/checkout@v4
1515
- name: Set Up Python ${{ matrix.python-version }}

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1717
- Utilitário `convert_real_to_text` [#525](https://github.com/brazilian-utils/brutils-python/pull/525)
1818
- Utilitário `convert_uf_to_name` [#554](https://github.com/brazilian-utils/brutils-python/pull/554)
1919

20+
### Deprecated
21+
22+
- **BREAKING CHANGES** Suporte ao Python 3.8 [#236](https://github.com/brazilian-utils/brutils-python/pull/561)
23+
- **BREAKING CHANGES** Suporte ao Python 3.9 [#236](https://github.com/brazilian-utils/brutils-python/pull/561)
24+
2025
## [2.2.0] - 2024-09-12
2126

2227
### Added

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ Switched to a new branch '386'
8484

8585
##### Requisitos
8686

87-
- [Python 3.8+][python]
87+
- [Python 3.10+][python]
8888
- [Poetry][poetry]
8989

9090
Crie um [virtualenv][virtualenv] para o brutils e o ative através do comando:
@@ -123,7 +123,7 @@ Se preferir usar pip, você pode instalar o projeto em modo de desenvolvimento d
123123

124124
##### Requisitos
125125

126-
- [Python 3.8+][python]
126+
- [Python 3.10+][python]
127127
- [pip][pip]
128128

129129
Crie um [virtualenv][virtualenv] para o brutils e o ative através do comando:

CONTRIBUTING_EN.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ Switched to a new branch '386'
7979

8080
### Requirements
8181

82-
- [Python 3.8+][python]
82+
- [Python 3.10+][python]
8383
- [Poetry][poetry]
8484

8585
Create a [virtualenv][virtualenv] for brutils and activate it:
@@ -118,7 +118,7 @@ If you prefer to use pip, you can install the project in development mode as fol
118118

119119
### Requirements
120120

121-
- [Python 3.8+][python]
121+
- [Python 3.10+][python]
122122
- [pip][pip]
123123

124124
Create a [virtualenv][virtualenv] for brutils and activate it using the following command:

poetry.lock

Lines changed: 12 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,10 @@ classifiers = [
1212
"License :: OSI Approved :: MIT License",
1313
"Programming Language :: Python",
1414
"Programming Language :: Python :: 3 :: Only",
15-
"Programming Language :: Python :: 3.8",
16-
"Programming Language :: Python :: 3.9",
1715
"Programming Language :: Python :: 3.10",
1816
"Programming Language :: Python :: 3.11",
1917
"Programming Language :: Python :: 3.12",
18+
"Programming Language :: Python :: 3.13",
2019
"Topic :: Office/Business",
2120
"Topic :: Software Development :: Internationalization",
2221
"Topic :: Software Development :: Libraries :: Python Modules",
@@ -26,7 +25,7 @@ classifiers = [
2625
]
2726

2827
[tool.poetry.dependencies]
29-
python = "^3.8.1"
28+
python = "^3.10"
3029
holidays = "^0.58"
3130
num2words = "0.5.14"
3231
coverage = "^7.2.7"

0 commit comments

Comments
 (0)