diff --git a/.github/workflows/gh-pages.yml b/.github/workflows/gh-pages.yml index 410387f..f4c4dab 100644 --- a/.github/workflows/gh-pages.yml +++ b/.github/workflows/gh-pages.yml @@ -6,7 +6,7 @@ on: jobs: make-pages: - runs-on: cadet-runners + runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: select python version diff --git a/.github/workflows/pull_request_tests.yml b/.github/workflows/pull_request_tests.yml index 34e6e77..9fcd3a6 100644 --- a/.github/workflows/pull_request_tests.yml +++ b/.github/workflows/pull_request_tests.yml @@ -4,7 +4,7 @@ on: pull_request jobs: test: - runs-on: cadet-runners + runs-on: ubuntu-latest strategy: matrix: python-version: ["3.11"] @@ -23,7 +23,7 @@ jobs: run: | python -m pytest -v --disable-warnings tests mypy: - runs-on: cadet-runners + runs-on: ubuntu-latest name: "mypy" steps: - uses: davidslusser/actions_python_mypy@v1.0.0 @@ -31,7 +31,7 @@ jobs: src: "src" options: "--ignore-missing-imports" ruff: - runs-on: cadet-runners + runs-on: ubuntu-latest name: "ruff" steps: - uses: davidslusser/actions_python_ruff@v1.0.0 diff --git a/README.md b/README.md index 789ac31..1987265 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ nested objects. ## Installation ``` -$ pip install git+ssh://git@github.nrel.gov/cadet/infrastructure_systems.git@main +$ pip install git+ssh://git@github.com/NREL/infrastructure_systems.git@main ``` ## Developer installation diff --git a/pyproject.toml b/pyproject.toml index 683ad74..b942300 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -52,9 +52,9 @@ dev = [ ] [project.urls] -Documentation = "https://github.nrel.gov/cadet/infrasys#readme" -Issues = "https://github.nrel.gov/cadet/infrasys/issues" -Source = "https://github.nrel.gov/cadet/infrasys" +Documentation = "https://github.com/NREL/infrasys#readme" +Issues = "https://github.com/NREL/infrasys/issues" +Source = "https://github.com/NREL/infrasys" [tool.pytest.ini_options] minversion = "6.0"