Skip to content

Commit

Permalink
Re-enable support for Python 3.11 (requires aiohttp-requests>=0.1.4) (#…
Browse files Browse the repository at this point in the history
…65)

* Revert "(❌) *Temporary* drop support for Python 3.11 (#41)"

This reverts commit c2b568a.

* Add Cython >= 3.0.0 as explicit dependency

PyYoshi/cChardet#81 (comment)

* Revert "Add Cython >= 3.0.0 as explicit dependency"

This reverts commit f5727ef.

* set min version
  • Loading branch information
hf-kklein authored Sep 24, 2023
1 parent c988498 commit 78609a3
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/black.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ["3.10"]
python-version: ["3.11"]
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ["3.10"]
python-version: ["3.11"]
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/packaging_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ["3.10"]
python-version: ["3.11"]
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ["3.10"]
python-version: ["3.11"]
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pythonlint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ["3.10"]
python-version: ["3.11"]
os: [ubuntu-latest]
linter-env: ["linting", "type_check"]
steps:
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/unittests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10"]
# For 3.11 see https://github.com/Hochfrequenz/edi_energy_scraper/issues/40
python-version: ["3.8", "3.9", "3.10", "3.11"]
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion requirements.in
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
beautifulsoup4
pypdf
aiohttp
aiohttp_requests
aiohttp_requests>=0.2.2
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ classifiers =
Development Status :: 4 - Beta
Intended Audience :: Developers
Programming Language :: Python
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Operating System :: OS Independent
license = mit
platforms = any
Expand All @@ -32,7 +32,7 @@ python_requires = >=3.8
install_requires =
beautifulsoup4>=4.11.1
aiohttp>=3.8.4
aiohttp-requests>=0.1.3
aiohttp-requests>=0.2.2
pypdf>=3.4.1

[options.packages.find]
Expand Down

0 comments on commit 78609a3

Please sign in to comment.