File tree Expand file tree Collapse file tree 3 files changed +17
-4
lines changed Expand file tree Collapse file tree 3 files changed +17
-4
lines changed Original file line number Diff line number Diff line change 33on :
44 push :
55 pull_request :
6+ schedule :
7+ # Weekly
8+ - cron : " * * * * 0"
69
710jobs :
811 test :
1114 strategy :
1215 fail-fast : false
1316 matrix :
14- python-version : [ 3.6 , 3.7 , 3.8, 3.9 ]
17+ python-version : [ 3.7 , 3.8 , 3.9, "3.10" ]
1518 toxenv : [""]
1619 experimental : [ false ]
1720 include :
2528 experimental : false
2629 python-version : 3.7
2730 - experimental : true
28- python-version : " 3.10 .0-beta.2 - 3.10 "
31+ python-version : " 3.11 .0-alpha - 3.11 "
2932 - experimental : true
3033 python-version : " pypy-3.7"
3134
7679 --sdist
7780 --wheel
7881 --outdir dist/
82+
7983 - name : Publish distribution to Test PyPI
8084 if : github.ref == 'refs/heads/master'
8185 uses : pypa/gh-action-pypi-publish@master
9094 with :
9195 skip_existing : true
9296 password : ${{ secrets.PYPI_API_TOKEN }}
97+
98+ - name : Release
99+ uses : softprops/action-gh-release@v1
100+ if : ${{ !github.event.schedule && startsWith(github.ref, 'refs/tags') }}
101+ with :
102+ draft : true
103+ generate_release_notes : true
104+ files : |
105+ dist/*.whl
Original file line number Diff line number Diff line change @@ -69,10 +69,10 @@ def read(fname):
6969 "License :: OSI Approved :: MIT License" ,
7070 "Programming Language :: Python" ,
7171 "Programming Language :: Python :: 3" ,
72- "Programming Language :: Python :: 3.6" ,
7372 "Programming Language :: Python :: 3.7" ,
7473 "Programming Language :: Python :: 3.8" ,
7574 "Programming Language :: Python :: 3.9" ,
7675 "Programming Language :: Python :: 3.10" ,
76+ "Programming Language :: Python :: 3.11" ,
7777 ],
7878)
Original file line number Diff line number Diff line change 22minversion = 2.3
33skip_missing_interpreters = true
44envlist =
5- py3{6,7,8,9,10}
5+ py3{6,7,8,9,10,11 }
66
77[testenv]
88changedir = {toxinidir}
You can’t perform that action at this time.
0 commit comments