python-automat: Update to 22.10.0, refresh patches

This also removes the patch to avoid setuptools-scm and adds a build
dependency on python-setuptools-scm/host.

Signed-off-by: Jeffery To <jeffery.to@gmail.com>
This commit is contained in:
Jeffery To
2023-05-17 19:03:52 +08:00
committed by Rosen Penev
parent 1dcaf5210e
commit d2ad1f47d3
4 changed files with 12 additions and 43 deletions

View File

@@ -1,30 +0,0 @@
--- a/setup.py
+++ b/setup.py
@@ -2,6 +2,7 @@
Setup file for automat
"""
+import os
from setuptools import setup, find_packages
try:
@@ -14,7 +15,7 @@ except(IOError, ImportError):
setup(
name='Automat',
- use_scm_version=True,
+ version=os.getenv('PKG_VERSION'),
url='https://github.com/glyph/Automat',
description="""
Self-service finite-state machines for the programmer on the go.
@@ -22,10 +23,6 @@ setup(
long_description=long_description,
packages=find_packages(exclude=[]),
package_dir={'automat': 'automat'},
- setup_requires=[
- 'setuptools-scm',
- 'm2r',
- ],
install_requires=[
"attrs>=19.2.0",
"six",

View File

@@ -1,6 +1,6 @@
--- a/setup.py
+++ b/setup.py
@@ -27,15 +27,6 @@ setup(
@@ -22,15 +22,6 @@ setup(
"attrs>=19.2.0",
"six",
],

View File

@@ -1,15 +1,15 @@
--- a/setup.py
+++ b/setup.py
@@ -21,7 +21,7 @@ setup(
@@ -12,7 +12,7 @@ setup(
Self-service finite-state machines for the programmer on the go.
""".strip(),
long_description=long_description,
readme='README.md',
- packages=find_packages(exclude=[]),
+ packages=find_packages(exclude=["*._test", "*._test.*"]),
package_dir={'automat': 'automat'},
install_requires=[
"attrs>=19.2.0",
@@ -30,6 +30,7 @@ setup(
setup_requires=[
'wheel',
@@ -25,6 +25,7 @@ setup(
author='Glyph',
author_email='glyph@twistedmatrix.com',
include_package_data=True,