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

Commit 40336cb

Browse files
committed
fixed @expose isse on python 3.10, release 4.82
1 parent b3c6c43 commit 40336cb

File tree

5 files changed

+4
-6
lines changed

5 files changed

+4
-6
lines changed

.github/workflows/main-ci.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,8 @@ jobs:
1717

1818
runs-on: ubuntu-latest
1919
strategy:
20-
max-parallel: 4
2120
matrix:
22-
python-version: ['2.7', '3.5', '3.6', '3.7', '3.8', '3.9', '3.10', 'pypy-3.7']
21+
python-version: ['2.7', '3.5', '3.6', '3.7', '3.8', '3.9', '3.10']
2322

2423
steps:
2524
- name: Checkout source

README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
[![Latest Version](https://img.shields.io/pypi/v/Pyro4.svg)](https://pypi.python.org/pypi/Pyro4/)
22
[![Anaconda-Server Badge](https://anaconda.org/conda-forge/pyro4/badges/version.svg)](https://anaconda.org/conda-forge/pyro4)
3-
[![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)
4-
[![Total Alerts](https://img.shields.io/lgtm/alerts/g/irmen/Pyro4.svg?logo=lgtm&logoWidth=18)](https://lgtm.com/projects/g/irmen/Pyro4/alerts)
53

64
PYRO - Python Remote Objects
75
============================

docs/source/changelog.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ Change Log
44

55
**Pyro 4.82**
66

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

src/Pyro4/constants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"""
66

77
# Pyro version
8-
VERSION = "4.82.dev0"
8+
VERSION = "4.82"
99

1010
# standard object name for the Daemon object
1111
DAEMON_NAME = "Pyro.Daemon"

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist=py27,py35,py36,py37,py38,py39,py310,pypy,pypy3
2+
envlist=py27,py35,py36,py37,py38,py39,py310
33

44
[testenv]
55
deps=-rtest_requirements.txt

0 commit comments

Comments
 (0)