Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
python-version: ['3.10', '3.11', '3.12', '3.13']
steps:
- uses: actions/checkout@v4
- name: Set Up Python ${{ matrix.python-version }}
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Utilitário `format_currency` [#426](https://github.com/brazilian-utils/brutils-python/issues/426)
- Utilitário `convert_real_to_text` [#387](https://github.com/brazilian-utils/brutils-python/pull/525)

### Deprecated

- **BREAKING CHANGES** Suporte ao Python 3.8 [#236](https://github.com/brazilian-utils/brutils-python/pull/561)
- **BREAKING CHANGES** Suporte ao Python 3.9 [#236](https://github.com/brazilian-utils/brutils-python/pull/561)

## [2.2.0] - 2024-09-12

### Added
Expand Down
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ Switched to a new branch '386'

##### Requisitos

- [Python 3.8+][python]
- [Python 3.10+][python]
- [Poetry][poetry]

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

##### Requisitos

- [Python 3.8+][python]
- [Python 3.10+][python]
- [pip][pip]

Crie um [virtualenv][virtualenv] para o brutils e o ative através do comando:
Expand Down
4 changes: 2 additions & 2 deletions CONTRIBUTING_EN.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ Switched to a new branch '386'

### Requirements

- [Python 3.8+][python]
- [Python 3.10+][python]
- [Poetry][poetry]

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

### Requirements

- [Python 3.8+][python]
- [Python 3.10+][python]
- [pip][pip]

Create a [virtualenv][virtualenv] for brutils and activate it using the following command:
Expand Down
5 changes: 2 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,10 @@ classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Office/Business",
"Topic :: Software Development :: Internationalization",
"Topic :: Software Development :: Libraries :: Python Modules",
Expand All @@ -26,7 +25,7 @@ classifiers = [
]

[tool.poetry.dependencies]
python = "^3.8.1"
python = "^3.10"
holidays = "^0.58"
num2words = "0.5.14"
coverage = "^7.2.7"
Expand Down
Loading