Skip to content

Commit

Permalink
Merge pull request #399 from jvirtanen/features/python-3.12
Browse files Browse the repository at this point in the history
Add Python 3.12 to GitHub Actions
  • Loading branch information
jvirtanen authored Oct 13, 2023
2 parents 914ba86 + 9127856 commit 71a0cc1
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ jobs:
- '3.9'
- '3.10'
- '3.11'
- '3.12'
steps:
- name: Check out GitHub repository
uses: actions/checkout@v4
Expand Down
1 change: 1 addition & 0 deletions applications/generate/requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
mypy==1.6.0
setuptools==68.2.2
3 changes: 2 additions & 1 deletion applications/generate/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@
def find_version():
tree = xml.etree.ElementTree.parse('pom.xml')
ns = {'POM': 'http://maven.apache.org/POM/4.0.0'}
return tree.find('./POM:parent/POM:version', ns).text
version = tree.find('./POM:parent/POM:version', ns).text
return version.replace('-SNAPSHOT', 'a1')


setup(
Expand Down

0 comments on commit 71a0cc1

Please sign in to comment.