Skip to content

Commit

Permalink
removed 3.9 from testing since I use some function() -> None: formati…
Browse files Browse the repository at this point in the history
…ng in this package
  • Loading branch information
tlfobe authored and tlfobe committed Oct 7, 2024
1 parent 741813e commit 9738d34
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11"]
python-version: ["3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion terphenyl_simulations/topology_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ def get_build_json(self, build_file):

def get_entry_dir_id(self, build_file):
build_json = self.get_build_json(build_file)
unique_dir_str = str(uuid.uuid5(uuid.NAMESPACE_X500, str(build_json)))
unique_dir_str = str(uuid.uuid5(uuid.NMESPACE_X500, str(build_json)))
unique_dir = "".join([a for a in unique_dir_str if a != "-"])
return unique_dir

Expand Down

0 comments on commit 9738d34

Please sign in to comment.