Skip to content

Commit e9b2a36

Browse files
Remove python 3.7 from supported versions.
Also assorted setup.cfg housekeeping.
1 parent 9b7f686 commit e9b2a36

File tree

3 files changed

+17
-6
lines changed

3 files changed

+17
-6
lines changed

README.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -191,3 +191,14 @@ tox
191191
```
192192

193193
Note that Tox requires the tested python versions to be installed. One convenient way to manage this is using [pyenv](https://github.com/pyenv/pyenv#installation). See the `.python-versions` file for the Python versions that need to be installed.
194+
195+
196+
### Releases
197+
198+
Assuming pypi permissions:
199+
200+
```
201+
python -m build
202+
twine upload -r testpypi dist/*
203+
twine upload dist/*
204+
```

setup.cfg

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,19 @@ description = Use the AWS Glue Schema Registry.
55
long_description = file: README.md
66
long_description_content_type = text/markdown
77
author = Corentin Debost
8-
author_email = corentin.debost@tenefit.com
8+
author_email = develop@disasteraware.com
99
license = Apache Software License
10-
license_file = LICENSE
10+
license_files = LICENSE
1111
classifiers =
1212
Development Status :: 4 - Beta
1313
Intended Audience :: Developers
1414
License :: OSI Approved :: Apache Software License
1515
Programming Language :: Python :: 3
1616
Programming Language :: Python :: 3 :: Only
17-
Programming Language :: Python :: 3.7
1817
Programming Language :: Python :: 3.8
1918
Programming Language :: Python :: 3.9
19+
Programming Language :: Python :: 3.10
20+
Programming Language :: Python :: 3.11
2021
Topic :: Software Development :: Libraries
2122
Typing :: Typed
2223
keywords = aws, glue, schema, registry, avro
@@ -29,7 +30,7 @@ packages =
2930
aws_schema_registry.adapter
3031
package_dir =
3132
=src
32-
python_requires = >=3.7
33+
python_requires = >=3.8
3334
install_requires =
3435
boto3>=1.17.102
3536
typing-extensions>=3.7.4.3;python_version<"3.8"

tox.ini

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
[tox]
2-
envlist = flake8,mypy,py37,py38,py39,py310,py311
2+
envlist = flake8,mypy,py38,py39,py310,py311
33

44
[gh-actions]
55
python =
6-
3.7: py37
76
3.8: py38
87
3.9: py39
98
3.10: py310

0 commit comments

Comments
 (0)