File tree Expand file tree Collapse file tree 2 files changed +42
-0
lines changed
Expand file tree Collapse file tree 2 files changed +42
-0
lines changed Original file line number Diff line number Diff line change 1+ name : Upload Python Package to PyPI when a Release is Created
2+
3+ on :
4+ workflow_dispatch :
5+
6+ release :
7+ types : [created]
8+
9+
10+ jobs :
11+ pypi-publish :
12+ name : Publish release to PyPI
13+ runs-on : ubuntu-latest
14+ environment :
15+ name : release
16+ url : https://pypi.org/p/configspace
17+ permissions :
18+ id-token : write
19+ steps :
20+ - uses : actions/checkout@v4
21+ - name : Set up Python
22+ uses : actions/setup-python@v4
23+ with :
24+ python-version : " 3.x"
25+ - name : Install dependencies
26+ run : |
27+ python -m pip install --upgrade pip
28+ pip install setuptools wheel build
29+ - name : Build package
30+ run : |
31+ python -m build
32+ - name : Publish package distributions to PyPI
33+ uses : pypa/gh-action-pypi-publish@release/v1
Original file line number Diff line number Diff line change 1+ # Version 1.2.2
2+
3+ * MAINT #404 : Added support for Python 3.13.
4+ * FIX #406 : Fixed issue for shuffle to undo unique sort
5+ * FEAT #409 : Added new Forbidden Clauses and Relations
6+ * FIX #410 : Fixed docs compilation
7+ * FIX #415 : Fix issue with checking conditional OR clauses.
8+ * MAINT #417 : Added support for Python 3.14, dropped support for Python 3.8.
9+
110# Version 1.2.1
211
312* FEAT #397 : Fix issue with forbidden check with disabled parameters.
You can’t perform that action at this time.
0 commit comments