Skip to content

Commit

Permalink
use python 3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
aquamatthias committed Apr 12, 2024
1 parent ebe5402 commit 08858c2
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_and_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.9'
python-version: '3.11'
architecture: 'x64'

- name: Restore dependency cache
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ clean-env: ## remove environment
lint: ## static code analysis
black --line-length 120 --check fixdatalink tests
flake8 fixdatalink
mypy --python-version 3.9 --strict fixdatalink tests
mypy --python-version 3.11 --strict fixdatalink tests

test: ## run tests quickly with the default Python
pytest
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version = "2.0.2"
authors = [{name="Some Engineering Inc."}]
description = "Data Pipelines for Fix infrastructure data."
license = {file="LICENSE"}
requires-python = ">=3.9"
requires-python = ">=3.11"
classifiers = [
# Current project status
"Development Status :: 4 - Beta",
Expand All @@ -14,7 +14,7 @@ classifiers = [
# License information
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
# Supported python versions
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.11",
# Supported OS's
"Operating System :: POSIX :: Linux",
"Operating System :: Unix",
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ commands = black --line-length 120 --check --diff --target-version py39 .

[testenv:mypy]
commands=
python -m mypy --python-version 3.9 fixdatalink tests
python -m mypy --python-version 3.11 fixdatalink tests

0 comments on commit 08858c2

Please sign in to comment.