File tree 6 files changed +380
-274
lines changed
6 files changed +380
-274
lines changed Original file line number Diff line number Diff line change @@ -3,11 +3,10 @@ language: python
3
3
cache : pip
4
4
5
5
python :
6
- - 3.5
7
6
- 3.6
8
7
- 3.7
9
8
- 3.8
10
- - pypy3
9
+ - 3.9
11
10
12
11
before_install :
13
12
- pip install poetry
@@ -34,12 +33,11 @@ jobs:
34
33
python : 3.8
35
34
script : skip
36
35
before_deploy :
37
- - poetry config repositories.mdsol https://mdsol.jfrog.io/mdsol/api/pypi/pypi-local
38
- - poetry config http-basic.mdsol $ARTIFACTORY_USERNAME $ARTIFACTORY_PASSWORD # Stored as Travis CI Environment Vars
36
+ - poetry config pypi-token.pypi $POETRY_PYPI_TOKEN_PYPI # this may be unnecessary
39
37
- poetry build
40
38
deploy :
41
39
provider : script
42
- script : poetry publish -r mdsol
40
+ script : poetry publish
43
41
skip_cleanup : true
44
42
on :
45
43
tags : true
Original file line number Diff line number Diff line change
1
+ # 1.2.1
2
+ - Add autodeploy to PyPI
3
+ - Remove Support for EOL Python 3.5
4
+ - Remove PyPy support
5
+
1
6
# 1.2.0
2
7
- Change the default signing versions (` MAUTH_SIGN_VERSIONS ` option) to ` v1 ` only.
3
8
Original file line number Diff line number Diff line change 1
- __version__ = "1.2.0"
1
+ # Load the version from the project metatdata
2
+ try :
3
+ import importlib .metadata as importlib_metadata
4
+ except ModuleNotFoundError :
5
+ # needed for Python < 3.8
6
+ import importlib_metadata
7
+
8
+ __version__ = importlib_metadata .version (__name__ )
You can’t perform that action at this time.
0 commit comments