Skip to content

Commit f187c05

Browse files
authored
Switch back to mmh3 (for 3.12 support) and add metadata/ci support to 3.12. (#308)
1 parent 3ea1c48 commit f187c05

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

.devcontainer/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ RUN git clone --depth=1 https://github.com/pyenv/pyenv.git .pyenv
2121
ENV PYENV_ROOT="/home/vscode/.pyenv"
2222
ENV PATH="$PYENV_ROOT/shims:$PYENV_ROOT/bin:$PATH"
2323

24-
RUN pyenv install 3.7 3.8 3.9 3.10 3.11
25-
RUN pyenv local 3.7 3.8 3.9 3.10 3.11
24+
RUN pyenv install 3.7 3.8 3.9 3.10 3.11 3.12
25+
RUN pyenv local 3.7 3.8 3.9 3.10 3.11 3.12
2626
RUN pyenv global ${VARIANT}
2727

2828
# Set up pyenv-virtualenv

.github/workflows/pull_request.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
strategy:
3434
matrix:
3535
os: [ubuntu-latest, macos-latest, windows-latest]
36-
python: ["3.7", "3.8", "3.9", "3.10", "3.11"]
36+
python: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
3737
steps:
3838
- uses: actions/checkout@v4
3939
- name: Setup Python

pyproject.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,14 @@ classifiers=[
1919
"Programming Language :: Python :: 3.8",
2020
"Programming Language :: Python :: 3.9",
2121
"Programming Language :: Python :: 3.10",
22-
"Programming Language :: Python :: 3.11"
22+
"Programming Language :: Python :: 3.11",
23+
"Programming Language :: Python :: 3.12",
2324
]
2425

2526
dependencies=[
2627
"requests",
2728
"fcache",
28-
"mmhash3",
29+
"mmh3",
2930
"apscheduler < 4.0.0",
3031
"importlib_metadata",
3132
"python-dateutil",

0 commit comments

Comments
 (0)