Pylons / pastedeploy

provides code to load WSGI applications and servers from URIs
MIT License
23 stars 13 forks source link

support Python 3.12 #43

Closed fmigneault closed 10 months ago

fmigneault commented 11 months ago

The following line fails when running PasteDeploy in Python 3.12: https://github.com/Pylons/pastedeploy/blob/443d58276e2a74fac673a04266583a0dc2b141bd/src/paste/deploy/util.py#L36

The inspect.signature is used instead as recommented by inspect.

Also, adds the relevant references and CI tests to indicate/validate Python 3.12 support.

mmerickel commented 11 months ago

Looks like the CICD failure is not related but if you wouldn't mind fixing it while you're in there.... (re-running tox -e format).

fmigneault commented 10 months ago

@mmerickel Just a friendly reminder. I applied the fix as requested. Thanks.

mmerickel commented 10 months ago

Hey I'm sorry I haven't been on top of this. I'll try to get a release out this week.

fmigneault commented 10 months ago

@mmerickel I cannot find a release yet. Is it still not available?

mmerickel commented 10 months ago

3.1.0 is out now

fmigneault commented 10 months ago

Thank you!