Skip to content
This repository has been archived by the owner on Jun 4, 2023. It is now read-only.

Commit

Permalink
fixed @expose isse on python 3.10, release 4.82
Browse files Browse the repository at this point in the history
  • Loading branch information
irmen committed Dec 25, 2021
1 parent b3c6c43 commit 40336cb
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 6 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/main-ci.yml
Expand Up @@ -17,9 +17,8 @@ jobs:

runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version: ['2.7', '3.5', '3.6', '3.7', '3.8', '3.9', '3.10', 'pypy-3.7']
python-version: ['2.7', '3.5', '3.6', '3.7', '3.8', '3.9', '3.10']

steps:
- name: Checkout source
Expand Down
2 changes: 0 additions & 2 deletions README.md
@@ -1,7 +1,5 @@
[![Latest Version](https://img.shields.io/pypi/v/Pyro4.svg)](https://pypi.python.org/pypi/Pyro4/)
[![Anaconda-Server Badge](https://anaconda.org/conda-forge/pyro4/badges/version.svg)](https://anaconda.org/conda-forge/pyro4)
[![Code Quality: Python](https://img.shields.io/lgtm/grade/python/g/irmen/Pyro4.svg?logo=lgtm&logoWidth=18)](https://lgtm.com/projects/g/irmen/Pyro4/context:python)
[![Total Alerts](https://img.shields.io/lgtm/alerts/g/irmen/Pyro4.svg?logo=lgtm&logoWidth=18)](https://lgtm.com/projects/g/irmen/Pyro4/alerts)

PYRO - Python Remote Objects
============================
Expand Down
1 change: 1 addition & 0 deletions docs/source/changelog.rst
Expand Up @@ -4,6 +4,7 @@ Change Log

**Pyro 4.82**

- fixed @expose issue on static method/classmethod due to API change in Python 3.10
- switched from travis to using github actions for CI builds and tests
- Python 3.10 is now included in the unit test runs

Expand Down
2 changes: 1 addition & 1 deletion src/Pyro4/constants.py
Expand Up @@ -5,7 +5,7 @@
"""

# Pyro version
VERSION = "4.82.dev0"
VERSION = "4.82"

# standard object name for the Daemon object
DAEMON_NAME = "Pyro.Daemon"
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
@@ -1,5 +1,5 @@
[tox]
envlist=py27,py35,py36,py37,py38,py39,py310,pypy,pypy3
envlist=py27,py35,py36,py37,py38,py39,py310

[testenv]
deps=-rtest_requirements.txt
Expand Down

0 comments on commit 40336cb

Please sign in to comment.