Skip to content

Commit

Permalink
test for 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
fgregg committed Sep 26, 2024
1 parent a5099d8 commit 26a1a94
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
fail-fast: false
matrix:
os: [windows-latest, macos-latest, ubuntu-latest]
python-version: [3.9, "3.10", "3.11", "3.12"]
python-version: [3.9, "3.10", "3.11", "3.12", "3.13-dev"]

steps:
- uses: actions/checkout@v2
Expand Down
3 changes: 1 addition & 2 deletions parse_scripts/parse.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import ast
import random
import re
from builtins import str

from lxml import etree

Expand Down Expand Up @@ -140,7 +139,7 @@ def osmSyntheticToTraining(xml_file):

def trainFileFromLines(addr_file, is_train=True):
# us50 data -> training or test file (xml)
lines = open(addr_file, "r")
lines = open(addr_file)
if is_train is True:
outputFileName = (
"training/training_data/"
Expand Down

0 comments on commit 26a1a94

Please sign in to comment.